/* At the very top of style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
/* At the very top of style.css */
@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet');

body.dark .marquee-card { 
    color: var(--color-white); 
    background: black;
    border: 2px solid white;
}
 


body.dark { 
    color: var(--color-white); 
    background: #28282B;
}

body.dark input { 
    color: black; 
    background: white;
    
}



body.dark .card { 
    color: var(--color-white); 
    background: black;
    border: 2px solid white;
}
body.dark .sidebar { 
    color: var(--color-white); 
    background: black;
}
body.dark li { 
    color: var(--color-white); 
    
}
body.dark header { 
    color: var(--color-white); 
    background: black;
    border-bottom: 2px solid white;
}

body.dark .icon-box { 
    color: var(--color-white); 
    background: black;
    border: 2px solid white;
}
body.dark .icon-button { 
    color: var(--color-white); 
    background: black;
    
}
body.dark .icon-grid { 
    color: var(--color-white); 
    background: black;
}
body.dark .icon-label { 
    color: var(--color-white); 
    
}
body.dark .profile { 
    color: var(--color-white); 
    background: black;
}

body.dark .username { 
    color: var(--color-white); 
    
}

body.dark .menu a { 
    color: var(--color-white); 
    border: 2px solid white;
    border-radius: 12px;
    
}
html {
	overflow-x: hidden;
}

body.dark {
	--light: #0C0C1E;
	--grey: #060714;
	--dark: #FBFBFB;
}

body {
	background: var(--grey);
	overflow-x: hidden;
}

body.dark .notification  {
  color: var(--color-white);/* dark mode */
}
body.dark .num  {
  color: var(--color-white);/* dark mode */
}
/* Dark mode active sidebar link */
body.dark #sidebar  ul.side-menu li.active a {
    color: var(--color-primary); /* Text turns white */
    background-color: var(--color-white); /* Optional: dark background for active item */
}

/* Optional: icon color */
body.dark #sidebar ul.side-menu li.active a i {
    color: var(--color-primary);
}

/* Optional: icon color */
body.dark .from-input {
    color: var(--color-primary);
}

.switch-mode {
	display: block;
	min-width: 50px;
	height: 25px;
	border-radius: 25px;
	background: var(--grey);
	cursor: pointer;
	position: relative;
}
.switch-mode::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	width: calc(25px - 4px);
	background: var(--blue);
	border-radius: 50%;
	transition: all .3s ease;
}
 #switch-mode:checked + .switch-mode::before {
	left: calc(100% - (25px - 4px) - 2px);
}

/* === Notification Bell CSS === */
 .notification {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    font-size: 20px;
    color: var(--dark);
    transition: color 0.3s;
}

body.dark .notification { color: var(--color-white); }

/* Rotate only bell icon */
.notification i { display: inline-block; transition: transform 0.2s; }
.notification:hover i { transform: rotate(15deg); }

/* Badge counter */
 .notification .num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    background: var(--red);
    color: var(--color-white);
    font-weight: bold;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.dark .notification .num {
    border: 2px solid var(--dark);
    background: #e74c3c;
}

/* Dropdown */
.notification-dropdown {
    display: none;
    position: absolute;
    top: 36px;
    right: 50%;
    transform: translateX(50%) translateY(-10px);
    width: 300px;
    max-height: 350px;
    overflow-y: auto;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    padding: 12px;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body.dark .notification-dropdown {
    background: #1a1a2e;
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

/* Show dropdown on hover */
 .notification:hover .notification-dropdown {
    display: block;
    opacity: 1;
    transform: translateX(50%) translateY(0);
    pointer-events: auto;
}

/* Notification items */
.notification-dropdown p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--dark);
    font-weight: bold;
    padding: 6px 8px;
    border-radius: 6px;
}

body.dark .notification-dropdown p { color: var(--color-white); }

/* Unread notification */
.notification-dropdown p.unread {
    background: var(--light-blue);
    font-weight: bold;
    color: var(--dark);
}

body.dark .notification-dropdown p.unread {
    background: #3a3a5a;
    color: var(--color-white);
}

/* Hover effect */
.notification-dropdown p:hover { background: var(--light-grey); cursor: pointer; }
body.dark .notification-dropdown p:hover { background: #2e2e4a; }

/* Buttons */
.notification-dropdown .notif-buttons { display: flex; justify-content: space-between; margin-top: 10px; }
.notification-dropdown .notif-buttons button {
    width: 48%;
    padding: 6px 10px;
    font-size: 13px;
    border: none;
    border-radius: 6px;
    background: var(--blue);
    color: var(--color-white);
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}
.notification-dropdown .notif-buttons button:hover { background: #2a6fb0; }

body.dark .notification-dropdown .notif-buttons button { background: #3a7bd5; }
body.dark .notification-dropdown .notif-buttons button:hover { background: #1f5ea5; }

/* Scrollbar */
.notification-dropdown::-webkit-scrollbar { width: 6px; }
.notification-dropdown::-webkit-scrollbar-thumb { background-color: var(--blue); border-radius: 3px; }
body.dark .notification-dropdown::-webkit-scrollbar-thumb { background-color: #5a7bd5; }


/*#content main*/.head-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 16px;
	flex-wrap: wrap;
}
 .head-title .left h1 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--dark);
}
 .head-title .left .breadcrumb {
	display: flex;
	align-items: center;
	grid-gap: 16px;
}
.head-title .left .breadcrumb li {
	color: var(--dark);
}
.head-title .left .breadcrumb li a {
	color: var(--dark-grey);
	pointer-events: none;
}
.head-title .left .breadcrumb li a.active {
	color: var(--blue);
	pointer-events: unset;
}
 .head-title .btn-download {
	height: 36px;
	padding: 0 16px;
	border-radius: 36px;
	background: var(--blue);
	color: var(--light);
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 10px;
	font-weight: 500;
}

 .box-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	grid-gap: 24px;
	margin-top: 36px;
}
 .box-info li {
	padding: 24px;
	background: var(--light);
	border-radius: 20px;
	display: flex;
	align-items: center;
	grid-gap: 24px;
}
 .box-info li .bx {
	width: 80px;
	height: 80px;
	border-radius: 10px;
	font-size: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
}
 .box-info li:nth-child(1) .bx {
	background: var(--light-blue);
	color: var(--blue);
}
 .box-info li:nth-child(2) .bx {
	background: var(--light-yellow);
	color: var(--yellow);
}
 .box-info li:nth-child(3) .bx {
	background: var(--light-orange);
	color: var(--orange);
}
 .box-info li .text h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--dark);
}
 .box-info li .text p {
	color: var(--dark);	
}
:root {
	--poppins: 'Poppins', sans-serif;
	--lato: 'Lato', sans-serif;

	--light: #F9F9F9;
	--blue: #3C91E6;
	--light-blue: #CFE8FF;
	--grey: #eee;
	--dark-grey: #AAAAAA;
	--dark: #342E37;
	--red: #DB504A;
	--yellow: #FFCE26;
	--light-yellow: #FFF2C6;
	--orange: #FD7238;
	--light-orange: #FFE0D3;
}
:root {
  --color-primary: #2196f3;
  --color-primary-light: #00bfff;
  --color-text: #333;
  --color-muted: #666;
  --color-bg: #f5f5f5;
  --color-white: #fff;
  --color-gray: #D3D3D3;
  --font-family: "Arial", sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 25px;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.12);

  --spacing-xs: 6px;
  --spacing-sm: 10px;
  --spacing-md: 12px;
  --spacing-lg: 20px;

  --transition: 0.3s ease;
}



/* From Uiverse.io by LightAndy1 - Fixed Version */
.group11 {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 10px auto;
}

.input11 {
  width: 100%;
  height: 50px;
  padding: 0 5.5rem;
  padding-left: 2.6rem;
  border: 2px solid #1E90FF;
  border-radius: 8px;
  outline: none;
  background-color: #f3f3f4;
  color: #0d0c22;
  transition: 0.3s ease;
  font-size: 14px;
}

.input11::placeholder {
  color: #9e9ea7;
}

.input11:focus,
.input11:hover {
  border-color: rgba(30, 144, 255, 0.7);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.icon11 {
  position: absolute;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  fill: #9e9ea7;
  pointer-events: none;
}


.cart{
    display: flex;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 3px;
    width: 80px;
}
.fa-solid{
    color: goldenrod;
}
.cart p{
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background-color: goldenrod;
    color: white;
}

.card111 {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 200px; /* Ensure enough height */
}

/* Advanced Button fixed to bottom-right with spacing */
.card-action-btn {
  position: absolute;
  bottom: 15px;    /* only bottom gap */
  right: 15px;     /* right gap */
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 10px 18px 10px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease-in-out;
}

.card-action-btn:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

/* Optional: Icon inside the button */
.card-action-btn i {
  font-size: 16px;
}

/* Unified Card Style - Same Size */
.card666 {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Auth Container Styles */
.auth-container {
  width: 90%;
  max-width: 500px;
  margin: 50px auto;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  font-weight: bold;
}

.claim-code {
  background-color: #ecf6fd;
  padding: 20px 15px;
  text-align: center;
  border-bottom: 1px solid #d8eafd;
  font-weight: bold;
}

.claim-code i {
  font-size: 20px;
  color: #3498db;
  margin-right: 8px;
  font-weight: bold;
}

.auth-tabs {
  display: flex;
  background: #3498db;
  color: white;
  text-align: center;
  font-weight: bold;
  border-radius: 0px;
}

.auth-tabs div {
  flex: 1;
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: bold;
  border-radius: 0px;
}

.auth-tabs div.active {
  background: #2980b9;
  font-weight: bold;
}

.auth-forms {
  padding: 30px;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

/* Optional: Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
        .card h2 {
            font-size: 22px;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

       /* .card h2 .material-icons {
            font-size: 26px;
            margin-right: 8px;
            color: #1e88e5;
        }

        .card p {
            font-size: 15px;
            color: #333;
            margin: 5px 0 10px;
        }*/

        .statuss {
            
            align-items: center;
            background: #e8f5e9;
            color: #388e3c;
            padding: 10px;
            border-radius: 8px;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .statuss .material-icons {
            font-size: 20px;
            margin-right: 6px;
            align-items: center;
        }

        .bot-link {
            color: #1e88e5;
            text-decoration: none;
            font-weight: bold;
            margin-left: 5px;
        }

        .change-id {
            font-size: 14px;
            color: #666;
            
            align-items: center;
            margin: 15px 0;
            text-align: center;
        }

        .change-id .material-icons {
            font-size: 18px;
            margin-right: 6px;
            align-items: center;
        }

        form {
            margin-top: 10px;
        }

      /*  input[type="text"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 12px;
            font-size: 14px;
        }*/

        button {
            background-color: #1e88e5;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        button:hover {
            background-color: #1565c0;
        }

        .message {
            background: #e0f7fa;
            color: #00796b;
            padding: 10px;
            border-radius: 6px;
            margin-top: 10px;
            font-weight: 500;
        }
        .cssbuttons-io-buttonn {
  display: flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  padding: 0.7em 1.4em 0.7em 1.1em;
  color: white;
  background: linear-gradient(
    0deg,
    rgba(20, 167, 62, 1) 0%,
    rgba(102, 247, 113, 1) 100%
  );
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
  letter-spacing: 0.05em;
  border-radius: 20em;
  transition: box-shadow 0.3s ease;
}

.cssbuttons-io-buttonn svg {
  margin-right: 6px;
  fill: white;
}

.cssbuttons-io-buttonn:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.cssbuttons-io-buttonn:active {
  box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}
.container {
  position: relative;
  background: linear-gradient(135deg, rgb(179, 208, 253) 0%, rgb(164, 202, 248) 100%);
  border-radius: 1000px;
  padding: 10px;
  display: grid;
  place-content: center;
  z-index: 0;
  max-width: 300px;
  margin: 10px auto;
}

.search-container {
  position: relative;
  width: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, rgb(218, 232, 247) 0%, rgb(214, 229, 247) 100%);
  padding: 5px;
  display: flex;
  align-items: center;
}

.search-container::after,
.search-container::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
}

.search-container::before {
  top: -1px;
  left: -1px;
  background: linear-gradient(0deg, rgb(218, 232, 247) 0%, rgb(255, 255, 255) 100%);
  z-index: -1;
}

.search-container::after {
  bottom: -1px;
  right: -1px;
  background: linear-gradient(0deg, rgb(163, 206, 255) 0%, rgb(211, 232, 255) 100%);
  box-shadow: rgba(79, 156, 232, 0.7) 3px 3px 5px 0px, rgba(79, 156, 232, 0.7) 5px 5px 20px 0px;
  z-index: -2;
}

.input {
  padding: 10px;
  width: 100%;
  background: linear-gradient(135deg, rgb(218, 232, 247) 0%, rgb(214, 229, 247) 100%);
  border: none;
  color: #305f7d;
  font-size: 16px;
  border-radius: 50px;
}

.input:focus {
  outline: none;
  background: linear-gradient(135deg, rgb(239, 247, 255) 0%, rgb(214, 229, 247) 100%);
}

.search__icon {
  width: 50px;
  aspect-ratio: 1;
  border-left: 2px solid white;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  padding-left: 12px;
  margin-right: 10px;
}

.search__icon:hover {
  border-left: 3px solid white;
}

.search__icon path {
  fill: white;
}




.telegram-card {
  max-width: 100%;
  padding: 10px;
}

.telegram-card button {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: linear-gradient(135deg, #0088cc, #1c9de5);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.telegram-card button:hover {
  background: linear-gradient(135deg, #007ab8, #188edc);
  transform: scale(1.02);
}

.telegram-card .icon {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.telegram-card .icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.telegram-card .text {
  flex-grow: 1;
  text-align: left;
}


    .alert-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background-color: rgba(0,0,0,0.6);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      font-weight: bold;
    }

    .alert-box {
      background: white;
      padding: 25px;
      width: 90%;
      max-width: 400px;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      font-weight: bold;
    }

    .alert-box h2 {
      color: #e74c3c;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .alert-box p {
      margin-bottom: 20px;
      font-size: 16px;
      font-weight: bold;
    }

    .alert-box button {
      padding: 10px 20px;
      background-color: #e74c3c;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
    }

    .alert-box button:hover {
      background-color: #c0392b;
      font-weight: bold;
    }
        .card h2 {
            font-size: 22px;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .card h2 .material-icons {
            font-size: 26px;
            margin-right: 8px;
            color: #1e88e5;
        }

        .card p {
            font-size: 15px;
            color: #333;
            margin: 5px 0 10px;
        }

        .statuss {
            
            align-items: center;
            background: #e8f5e9;
            color: #388e3c;
            padding: 10px;
            border-radius: 8px;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .statuss .material-icons {
            font-size: 20px;
            margin-right: 6px;
        }

        .bot-link {
            color: #1e88e5;
            text-decoration: none;
            font-weight: bold;
            margin-left: 5px;
        }

        .change-id {
            font-size: 14px;
            color: #666;
            
            align-items: center;
            margin: 15px 0;
        }

        .change-id .material-icons {
            font-size: 18px;
            margin-right: 6px;
            align-items: center;
        }

        form {
            margin-top: 10px;
        }

      /*  input[type="text"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 12px;
            font-size: 14px;
        }*/

        button {
            background-color: #1e88e5;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        button:hover {
            background-color: #1565c0;
        }

        .message {
            background: #e0f7fa;
            color: #00796b;
            padding: 10px;
            border-radius: 6px;
            margin-top: 10px;
            font-weight: 500;
        }
        .cssbuttons-io-button {
  display: flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  padding: 0.7em 1.4em 0.7em 1.1em;
  color: white;
  background: linear-gradient(
    0deg,
    rgba(20, 167, 62, 1) 0%,
    rgba(102, 247, 113, 1) 100%
  );
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
  letter-spacing: 0.05em;
  border-radius: 20em;
  transition: box-shadow 0.3s ease;
}

.cssbuttons-io-button svg {
  margin-right: 6px;
  fill: white;
}

.cssbuttons-io-button:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.cssbuttons-io-button:active {
  box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}
.container {
  position: relative;
  background: linear-gradient(135deg, rgb(179, 208, 253) 0%, rgb(164, 202, 248) 100%);
  border-radius: 1000px;
  padding: 10px;
  display: grid;
  place-content: center;
  z-index: 0;
  max-width: 300px;
  margin: 10px auto;
}

.search-container {
  position: relative;
  width: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, rgb(218, 232, 247) 0%, rgb(214, 229, 247) 100%);
  padding: 5px;
  display: flex;
  align-items: center;
}

.search-container::after,
.search-container::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
}

.search-container::before {
  top: -1px;
  left: -1px;
  background: linear-gradient(0deg, rgb(218, 232, 247) 0%, rgb(255, 255, 255) 100%);
  z-index: -1;
}

.search-container::after {
  bottom: -1px;
  right: -1px;
  background: linear-gradient(0deg, rgb(163, 206, 255) 0%, rgb(211, 232, 255) 100%);
  box-shadow: rgba(79, 156, 232, 0.7) 3px 3px 5px 0px, rgba(79, 156, 232, 0.7) 5px 5px 20px 0px;
  z-index: -2;
}

.input {
  padding: 10px;
  width: 100%;
  background: linear-gradient(135deg, rgb(218, 232, 247) 0%, rgb(214, 229, 247) 100%);
  border: none;
  color: #305f7d;
  font-size: 16px;
  border-radius: 50px;
}

.input:focus {
  outline: none;
  background: linear-gradient(135deg, rgb(239, 247, 255) 0%, rgb(214, 229, 247) 100%);
}

.search__icon {
  width: 50px;
  aspect-ratio: 1;
  border-left: 2px solid white;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  padding-left: 12px;
  margin-right: 10px;
}

.search__icon:hover {
  border-left: 3px solid white;
}

.search__icon path {
  fill: white;
}

.page-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #3b82f6; /* default blue text */
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-title .breadcrumb-link {
  color: #3b82f6; /* blue */
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  font-weight: bold;
}

.page-title .breadcrumb-link:hover {
  color: #2563eb; /* darker blue on hover */
}

.page-title .divider {
  margin: 0 4px;
  color: #93c5fd; /* light blue divider */
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #007bff;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: bold;
}

.btn:hover {
  background: #0056cc;
}

.popular {
  border: 2px solid #007bff;
  position: relative;
}

.popular::before {
  content: "PAVAN CASH LOOT";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: #fff;
  padding: 2px 10px;
  font-size: 0.7rem;
  border-radius: 12px;
  font-weight: bold;
}

.magic-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 20px;
  overflow: hidden;
  /*transition: transform 0.3s ease;*/
  border-left-color: 2px solid #007bff ;
}

.magic-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #00f0ff 0%, #ff00c3 100%);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(45deg);
}

.magic-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ffc107 0%, #ff5722 100%);
  opacity: 0.07;
  border-radius: 50%;
  transform: rotate(-30deg);
}

/*.magic-card:hover {
  transform: translateY(-5px);
}*/

.card-content h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.card-content .amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}

.card-content .percentage {
  font-size: 0.9rem;
  color: #2ecc71;
}
.magic-card::after {
  background-image: url("data:image/svg+xml,<svg ... >");
  background-size: cover;
  opacity: 0.1;
}
.card .pricinggg {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.6em 1.2em;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(6px);
}
.card .pricing-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.6em 1.2em;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  box-shadow: -3px -3px 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(6px);
}

.card .pricing-top-left {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 0 99em 99em 0;
  display: flex;
  align-items: center;
  padding: 0.6em 1.2em;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(6px);
}

.card .pricing-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  border-radius: 0 0 1em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7em;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  backdrop-filter: blur(6px);
}

.card .pricinggg:hover {
  transform: scale(1.05);
  box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.15);
}

.magic-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.magic-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #00f0ff 0%, #ff00c3 100%);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(45deg);
}

.magic-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ffc107 0%, #ff5722 100%);
  opacity: 0.07;
  border-radius: 50%;
  transform: rotate(-30deg);
}

.magic-card:hover {
  transform: translateY(-5px);
}

.card-content h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.card-content .amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}

.card-content .percentage {
  font-size: 0.9rem;
  color: #2ecc71;
}
.magic-card::after {
  background-image: url("data:image/svg+xml,<svg ... >");
  background-size: cover;
  opacity: 0.1;
}

.profile-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  max-width: 350px;
  margin: 40px auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease-in-out;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.profile-imgg {
  width: 100px;
  height: 100px;
  border-radius: 10%;
  object-fit: cover;
  border: 3px solid #4a90e2;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}

.profile-title {
  font-size: 0.95rem;
  color: #777;
  margin-top: 5px;
  margin-bottom: 15px;
}

.profile-bio {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.profile-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.profile-buttons a {
  text-decoration: none;
  background: #4a90e2;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  transition: background 0.3s;
}

.profile-buttons a:hover {
  background: #357abd;
}  
    .info-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f9f9f9;
        padding: 10px 15px;
        margin: 10px 0;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        font-family: 'Segoe UI', sans-serif;
    }

    .info-label {
        display: flex;
        align-items: center;
        font-weight: bold;
        color: #444;
    }

    .info-label svg {
        margin-right: 8px;
        color: #1e88e5; /* Icon Color */
        font-weight: bold;
    }

    .info-value {
        text-align: right;
        color: #2c3e50; /* Text Color */
        font-weight: bold;
    }
    
 .marquee-card {
    background: linear-gradient(90deg, #007bff, #0056d2);
    padding: 14px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', sans-serif;
  }

  .marquee-card marquee {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
  }

  .marquee-icon {
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
  }

  .icon-gold {
    color: #ffd700;
  }

  .icon-blue {
    color: #00d9ff;
  }

  .icon-green {
    color: #00ffcc;
  }

  marquee:hover {
    animation-play-state: paused;
  }

  .lucide {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
    font-weight: bold;
  }
       
        /* Fullscreen Loader Container */



#loaders-container-03 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  background: rgba(52, 152, 219, 0.1);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}



		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}
	body {
			
			background: var(--grey);
			color: #333;
			overflow-x: hidden;
		}

body {
	
	overflow-x: hidden;
}

    
header {

  background: /*#6200ea*/ #3498db;
  color: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;

    
}


header .left,
header .center,
header .right {
  flex: 1;
  display: flex;
  align-items: center;
}

header .center {
  justify-content: center;
}

header .left {
  justify-content: flex-start;
}

header .right {
  justify-content: flex-end;
}

header a {
  
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  padding: 0 10px;
  transition: 0.2s;
  display: flex;
  gap:6;
}

header a:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

header h1 {
  margin: 0;
  font-size: 22px;
  
}
header img {

  width: 40px;

  height: 40px;
  border-radius: 20%;
  display: flex;
  border: 2px solid black;
}
		

		main {
			padding: 30px 20px;
			animation: fadeIn 1s ease;
		}
		.hero {
			text-align: center;
			margin-bottom: 30px;
		}
		.hero h2 {
			font-size: 24px;
			color: #333;
			margin-bottom: 10px;
		}
		.hero p {
			font-size: 16px;
			color: #555;
		}
		.cards {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
			gap: 20px;
			margin-top: 30px;
		}
		.card {
			background: #fff;
			border-radius: /*15px*/5px;
			box-shadow: 0 6px 15px rgba(0,0,0,0.1);
			padding: 20px;
			text-align: center;
			/*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
		}
		.card1:hover {
			transform: translateY(-10px);
			box-shadow: 0 10px 20px rgba(0,0,0,0.2);
		}
		.card img {
			width: 60px;
			margin-bottom: 15px;
			/*animation: bounce 2s infinite;*/
		}
		.card h3 {
			font-size: 18px;
			margin-bottom: 10px;
			color: #333;
		}
		.card p {
			font-size: 14px;
			color: #666;
		}
		.card {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
 /* transform: translateY(-5px);*/
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.card .pricing {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #3b82f6, #60a5fa); /* blue gradient */
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.6em 1em;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.card .pricinggg {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.6em 1.2em;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(6px);
}

.card .pricinggg:hover {
  transform: scale(1.05);
  box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.15);
}
		footer {
			background: #3498db;
			color: #fff;
			text-align: center;
			bottom: 0;
			padding: 15px;
			margin-top: 40px;
		    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
			border-top-left-radius: 12px;
			border-top-right-radius: 12px;
			font-weight: bold;
			align-items: center;
			justify-content: center;
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		}
		footer a {
			color: #fff;
			margin: 0 10px;
			text-decoration: none;
			font-weight: bold;
		}
		footer a:hover {
		    color: #ffdd57;
		    transform: scale(1.1);
		    
		}
		footer img {

  width: 50px;

  height: 50px;
  border-radius: 20%;
  display: flex;
  border: 2px solid black;
  align-items: center;
  justify-content: center;
}

footer .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .img-container img {
  width: 50px;
  height: 50px;
  border-radius: 20%;
  border: 2px solid black;
}
		



.sidebar {
  width: 260px;
  background: #ffffff;
  height: 100vh;
  position: fixed;
  top: 60px;
  left: -260px;
  transition: 0.3s;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  overflow-y: auto;
  z-index: 999;
}

.sidebar.open {
  left: 0;
}

.profile {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #3498db;
  /*border-bottom: 1px solid #eee;*/
  font-weight: bold;
}

.profile img {
  width: 50px;
  height: 50px;
  border-radius: 20%;
  display: flex;
  border: 2px solid black;
}

.profile p {
  margin: 0;
  font-weight: bold;
  display: flex;
}

.profile .balance {
  
  font-weight: bold;
  display: flex;
  
}

.menu {
  display: flex;
  flex-direction: column;
  
}

.menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  text-decoration: none;
  color: #111;
  font-weight: bold;
 /* border-bottom: 2px solid #ffffff;*/
  transition: background 0.2s;
  gap:20px;
  margin: 2px 10px;
  
}

.menu a:hover {
  /*background: #0079eb #3498db;*/
  background-color: hsl(204, 50%, 50%); /* lighter version of #3498db */
  border-radius: 12px;
  color: white;
  padding: 15px 25px;
  
}

.material-icons {
  font-size: 20px;
}

  .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    
  }

  .balance-section {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pa {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .amount {
    font-size: 22px;
    color: red;
    font-weight: bold;
  }

  .plus-icon {
    color: blue;
    font-size: 28px;
    cursor: pointer;
  }

  .divider {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #ddd;
  }

  .user-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
  }

  .user-icon {
    font-size: 20px;
  }

  .username {
      color: white;
    font-weight: bold;
    display: flex;
  justify-content: flex-end;
  font-weight: bold;
  font-size: 18px;
  }

  .arrow-icon {
    color: red;
    font-size: 20px;
  }
  

    .doocard {
    max-height: 250px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    padding: 20px;
    transition: max-height 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Expanded state */
.doocard.open {
    max-height: 1000px; /* Large enough to show full content */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    
}

/* Optional smooth content animation */
.doocard * {
    transition: all 0.3s ease;
}
    .arrow-icon.rotate {
      transform: rotate(180deg);
      transition: transform 0.5s ease;
      
    }
    .arrow-icon {
      transition: transform 0.3s ease;
      font-size:32px;
      
    }
.ripple-btn {
  position: relative;
  overflow: hidden;
}

/* Shimmer line effect */
.ripple-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  filter: blur(10px);
  animation: shimmer-line 5s infinite;
  pointer-events: none;
  font-weight: bold;
}

/* Animation keyframes: move left to right */
@keyframes shimmer-line {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* From Uiverse.io by marcelodolza */ 
.button {
  --primary: #ff5569;
  --neutral-1: #f7f8f7;
  --neutral-2: #e7e7e7;
  --radius: 14px;

  cursor: pointer;
  border-radius: var(--radius);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  border: none;
  box-shadow: 0 0.5px 0.5px 1px rgba(255, 255, 255, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.2), 0 4px 5px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  min-width: 200px;
  padding: 20px;
  height: 68px;
  font-family: "Galano Grotesque", Poppins, Montserrat, sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}
.button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.3), 0 10px 3px -3px rgba(0, 0, 0, 0.04);
}
.button:active {
  transform: scale(1);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 10px 3px -3px rgba(0, 0, 0, 0.2);
}
.button:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2.5px solid transparent;
  background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45))
      border-box;
  z-index: 0;
  transition: all 0.4s ease;
}
.button:hover::after {
  transform: scale(1.05, 1.1);
  box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
}
.button::before {
  content: "";
  inset: 7px 6px 6px 6px;
  position: absolute;
  background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
  border-radius: 30px;
  filter: blur(0.5px);
  z-index: 2;
}
.state p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.state .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.state .icon svg {
  overflow: visible;
}

/* Outline */
.outline {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  inset: -2px -3.5px;
}
.outline::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 180deg,
    transparent 60%,
    white 80%,
    transparent 100%
  );
  animation: spin 2s linear infinite;
  animation-play-state: paused;
}
/*@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}*/
.button:hover .outline {
  opacity: 1;
}
.button:hover .outline::before {
  animation-play-state: running;
}

/* Letters */
.state p span {
  display: block;
  opacity: 0;
  animation: slideDownn 0.8s ease forwards calc(var(--i) * 0.03s);
}
.button:hover p span {
  opacity: 1;
  animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
}
.button:focus p span {
  opacity: 1;
  animation: disapear 0.6s ease forwards calc(var(--i) * 0.03s);
}

.sidebar-footer {
  
  color: #3498db;
  font-size: 13px;
  opacity: 0.9;
  font-weight: bold;
}
.card .features .icon {
  background-color: #1FCAC5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: #fff;
}

.card .features .icon i {
  width: 18px;
  height: 18px;
  color: #fff;
}

/* From Uiverse.io by Yaya12085 */ 
.plan {
  border-radius: 16px;
  box-shadow: 0 30px 30px -25px rgba(0, 38, 255, 0.205);
  padding: 10px;
  background-color: #fff;
  color: #697e91;
  max-width: 300px;
}

.card strong {
  font-weight: 600;
  color: #425275;
}

.card .inner {
  align-items: center;
  padding: 20px;
  padding-top: 40px;
  background-color: #ecf0ff;
  border-radius: 12px;
  position: relative;
}

.card1 .pricing {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #bed6fb;
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.625em 0.75em;
  font-size: 1.25rem;
  font-weight: 600;
  color: #425475;
}

.card1 .pricing small {
  color: #707a91;
  font-size: 0.75em;
  margin-left: 0.25em;
}

.card .title {
  font-weight: 600;
  font-size: 1.25rem;
  color: #425675;
}

.card .title + * {
  margin-top: 0.75rem;
}

.card .info + * {
  margin-top: 1rem;
}

.card .features {
  display: flex;
  flex-direction: column;
}

.card .features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card .features li + * {
  margin-top: 0.75rem;
}

.card .features .icon {
  background-color: #1FCAC5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.card .features .icon svg {
  width: 14px;
  height: 14px;
}

.card .features + * {
  margin-top: 1.25rem;
}

.card .action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}


.setting-btn {
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #3498db; /* White background */
  border-radius: 10px;
  cursor: pointer;
  border: none;
  box-shadow: 0px 0px 0px 2px white; /* Blue ring */
  transition: background-color 0.3s;
}

.setting-btn:hover {
  background-color: #3498db; /* Light blue on hover */
}

.bar {
  width: 50%;
  height: 2px;
  background-color: white; /* Blue bars */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 2px;
}

.bar::before {
  content: "";
  width: 2px;
  height: 2px;
  background-color: /*#3498db*/white; /* Darker blue center dot */
  position: absolute;
  border-radius: 50%;
  border: 2px solid white;
  transition: all 0.3s;
  box-shadow: 0px 0px 5px #3498db;
}

.bar1::before {
  transform: translateX(-4px);
}

.bar2::before {
  transform: translateX(4px);
}

