/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
/*landing page only*/
.landing-page{
  margin: 0;
  overflow: hidden;
}

/* Background video */
.landing-page, .bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Header logo */
.logo {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  color: gold;
}
.logo img { width: 40px;border-radius: 12px; }
.logo span { font-size: 1.4rem; font-weight: bold; }

/* Landing overlay */
.overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  margin-top: 25vh;
}
.buttons button {
  margin: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background-color: #0b1c2d;
  color: gold;
  cursor: pointer;
}

/* Dashboard / auth container */
.auth-container, .dashboard-content {
  padding: 40px;
  max-width: 400px;
  margin: 80px auto 0;
  text-align: center;
}

/* Bottom navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #0b1c2d;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 12px;
}
.nav-item img {
  width: 22px;
  height: 22px;
}
.nav-item.active {
  color: #d4af37;
}
.nav-item.active img { filter: brightness(1.3); }
.site footer{
    font-weight: 300;
}
.site-footer a{
  font-weight: bold;
}
/* Make images and videos scale */
img, video {
  max-width: 100%;
  height: auto;
}

/* Landing page overlay text */
.overlay {
  margin-top: 20vh;
  padding: 0 20px;
}

/* Auth container (login/register) */
.auth-container {
  width: 90%;
  max-width: 400px;
  margin: 80px auto 0;
  text-align: center;
}

/* Bottom navigation buttons */
.bottom-nav {
  height: 64px;
  padding: 0 10px;
}

.nav-item span {
  font-size: 12px;
}

/* Make buttons bigger on small screens */
.buttons button {
  width: 45%;
  font-size: 14px;
  padding: 12px 0;
}

/* Media queries for smaller devices */
@media screen and (max-width: 600px) {
  .overlay h1 {
    font-size: 1.6rem;
  }

  .overlay p {
    font-size: 0.9rem;
  }

  .dashboard-content {
    padding: 20px;
  }

  .nav-item span {
    font-size: 10px;
  }

  .bottom-nav {
    height: 56px;
  }
}

/* Media queries for larger screens */
@media screen and (min-width: 1200px) {
  .overlay h1 {
    font-size: 3rem;
  }

  .overlay p {
    font-size: 1.2rem;
  }

  .auth-container {
    max-width: 500px;
  }

  .nav-item span {
    font-size: 14px;
  }

  .bottom-nav {
    height: 72px;
  }
}
/* Container for login/register forms */
.auth-container {
  width: 90%;
  max-width: 400px;
  margin: 100px auto;
  padding: 30px 25px;
  background-color: #0b1c2d; /* navy background */
  border-radius: 20px;       /* rounded container */
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  text-align: center;
  color: #ffffff;
}

/* Headings inside form */
.auth-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: gold;
}

/* Input fields */
.auth-container input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #d4af37;  /* gold border */
  border-radius: 12px;         /* rounded inputs */
  background-color: #0b1c2d;
  color: #ffffff;
  font-size: 1rem;
}

/* Input focus effect */
.auth-container input:focus {
  outline: none;
  border: 2px solid #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

/* Buttons */
.auth-container button {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border: none;
  border-radius: 15px;         /* rounded button */
  background-color: #d4af37;   /* gold */
  color: #0b1c2d;              /* text navy */
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button hover effect */
.auth-container button:hover {
  background-color: #b08b2c;   /* darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Links below the form */
.auth-container p, .auth-container a {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-top: 10px;
}

.auth-container a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
}

.auth-container a:hover {
  opacity: 0.8;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .auth-container {
    margin: 60px auto;
    padding: 25px 20px;
  }

  .auth-container h1 {
    font-size: 1.6rem;
  }

  .auth-container button {
    font-size: 1rem;
    padding: 12px;
  }
}
.btn {
  background: gold;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid gold;
  padding: 12px 20px;
  border-radius: 10px;
  background: transparent;
  color: gold;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  background: #020817;
}

.bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 14px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.bottom-nav a.active {
  color: gold;
}

.avatar-container {
  text-align: center;
}

.avatar-container img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}
 /* Bottom navigation container */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: #0b1c2d; /* navy blue */
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

/* Individual nav links */
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #cbd5e1; /* light text */
  text-decoration: none;
  font-size: 12px;
  font-weight: bold; /* makes text bold */
  transition: all 0.2s ease;
  padding: 6px 8px;
  border-radius: 10px; /* rounded “button” feel */
}

/* Nav icons */
.nav-item img {
  width: 22px;
  height: 22px;
}

/* Hover effect */
.nav-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Active page styling */
.nav-item.active {
  color: #d4af37;
}
.nav-item.active img {
  filter: brightness(1.3);
}


.hero .overlay {
  background: rgba(0,0,0,0.5); /* semi-dark overlay for readability */
}

body.light-theme .hero .overlay {
  background: rgba(255,255,255,0.3);
}

/* BOTTOM NAVIGATION */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: #001f3f;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
}

body.light-theme .bottom-nav {
  background-color: #ffffff;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
}

.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  color: #cbd5e1;
}

body.light-theme .bottom-nav .nav-item {
  color: #0b1c2d;
}

.bottom-nav .nav-item.active {
  color: #d4af37;
}
.balance-box img{
  border-radius: 42px;
  justify-content: center;
  align-items: center;  
}
.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 20px;
  min-height: calc(100vh - 60px); /* leave space for bottom nav */
}

.home-container h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #001f3f; /* navy */
}

body.light-theme .home-container h1 {
  color: #2978c7; /* dark text for light mode */
}

.home-container p {
  font-size: 1.2rem;
  max-width: 750px;
  color: #333;
  line-height: 1.6;
}

body:not(.light-theme) .home-container p {
  color: #cbd5e1; /* light text for dark mode */
}

.home-image {
  width: 80%;
  max-width: 600px;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin: 20px 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .home-container h1 {
    font-size: 2rem;
  }
  .home-container p {
    font-size: 1rem;
  }
  .home-image {
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .home-container h1 {
    font-size: 1.6rem;
  }
  .home-container p {
    font-size: 0.9rem;
  }
}
.payment-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  min-height: calc(100vh - 60px); /* leave space for bottom nav */
  text-align: center;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b1220;
  color: #fff;
}

.dashboard {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

h1 {
  margin-bottom: 20px;
}

.hero-image img {
  width: 50%;
  border-radius: 16px;
  margin-bottom: 25px;
}

/* Balance Card */
.balance-card {
  background: #ffffff;
  color: #0ee215;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-bottom: 30px;
  text-align: center;
}

.balance-card .label {
  color: #555;
  margin-bottom: 8px;
}

.balance-card h2 {
  font-size: 2rem;
  margin: 10px 0 20px;
}

.actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.actions button {
  padding: 12px 22px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  background: navy;
  color: #fff;
}

.actions .withdraw {
  background: #b8860b;
}

/* History */
.history h3 {
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #111a2e;
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  padding: 12px;
  text-align: center;
}

th {
  background: #0f1b33;
}

td {
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
  .actions {
    flex-direction: column;
  }
}
#balance {
  font-weight: 700;
  font-size: 2.2rem;
}

.balance-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-switch button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.eye-toggle {
  cursor: pointer;
  font-size: 1.1rem;
}
.balance-card {
  background: rgb(5, 18, 70);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 420px;
  margin: 0 auto 20px;
}

.balance-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#balance {
  font-size: 2.4rem;
  font-weight: 700;
}

.eye-toggle {
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.7;
}

.eye-toggle:hover {
  opacity: 1;
}

.currency-switch {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.currency-switch button {
  background: #fdfafa;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.currency-switch button:hover {
  background: #2b02f6;
}

.profile-page {
  max-width: 500px;
  margin: auto;
  padding: 20px;
}

.profile-card, .settings-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  text-align: center;
}

.avatar-container {
  position: relative;
  margin-bottom: 15px;
}

#avatarPreview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-edit {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  color: #555;
}

.profile-form input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.profile-form button {
  margin-top: 10px;
  padding: 12px;
  width: 100%;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.settings-card button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.logout-btn {
  background: #e53935;
  color: #fff;
}
.hint {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
  text-align: center;
}

#resetBtn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

#resetBtn:hover {
  background: #1e40af;
}

/* Country select styling */
#countryCode {
  width: 100%;
  padding: 10px 12px;
  margin: 8px 0 15px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background-color: #fff;
  cursor: pointer;
}

/* Focus state */
#countryCode:focus {
  outline: none;
  border-color: #0b1e5b; /* Navy focus border */
  box-shadow: 0 0 5px rgba(11, 30, 91, 0.3);
}
.btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 5px 0;
  background-color: #0b1e5b; /* Navy */
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
.ai-btn {
  display: inline-block;
  padding: 3px 40px;
  margin: 5px 0;
  background-color: #f58403; /* Navy */
  color: #090808;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #08204a;
}
.auth-container input {
  width: 100%;
  padding: 12px 15px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.auth-container button {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border: none;
  border-radius: 10px;
  background-color: #0b1e5b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.auth-container button:hover {
  background-color: #08204a;
}

.auth-container a {
  color: #9fb1ea;
  text-decoration: none;
  font-size: 14px;
}

.auth-container a:hover {
  text-decoration: underline;
}
/* Floating AI button */
.ai-floating-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 50px;
  height: 60px;
  background-color: #fb4902;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s;
}

.ai-floating-btn:hover {
  transform: scale(1.1);
}

.ai-floating-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.ai-floating-btn {
  color: #FFD700; /* Gold */
  text-decoration: none; /* remove underline */
  font-weight: bold;
}
/* ===== Payment Page ===== */
body.payment-page {
  background: linear-gradient(135deg, #020126, #203a43, #08cff7); /* unique dark gradient */
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dashboard-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

/* ===== Balance Card ===== */
.balance-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px 30px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#balance {
  font-size: 2rem;
  font-weight: bold;
}

.eye-toggle {
  cursor: pointer;
  font-size: 1.6rem;
  transition: transform 0.2s;
}

.eye-toggle:hover {
  transform: scale(1.2);
}

/* ===== Currency Buttons ===== */
.currency-switch {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.currency-btn {
  padding: 10px 25px;
  border-radius: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.currency-btn:first-child { background: #1a73e8; color: #fff; }
.currency-btn:last-child { background: #00c851; color: #fff; }

.currency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ===== Deposit & Withdraw Buttons ===== */
.actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

#depositBtn {
  background: #1e90ff; /* unique blue gradient */
  background: linear-gradient(90deg, #1e90ff, #48d1cc);
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#depositBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

#withdrawBtn {
  background: #f1c40f; /* gold */
  background: linear-gradient(90deg, #f1c40f, #f39c12);
  color: #000;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#withdrawBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* ===== Transaction History ===== */
.history {
  width: 100%;
  max-width: 1200px; /* wide table */
  margin: 0 auto 40px auto;
}

.history h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

/* Table styling - open and wide */
.history table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  table-layout: fixed; /* columns equal width */
}

.history thead {
  background: rgba(255,255,255,0.1);
}

.history th,
.history td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  word-wrap: break-word;
}

.history tr:hover {
  background: rgba(255,255,255,0.05);
}

.tx-deposit {
  color: #22c55e; /* bright green */
  font-weight: bold;
}

.tx-withdraw {
  color: #ff4d4d; /* bright red */
  font-weight: bold;
}
.profile-body{
  background: linear-gradient(135deg, #3398f0 0%, #00020b 100%);
}
.auth-page{
    background: linear-gradient(135deg, #3398f0 0%, #00020b 100%);
  color: #222;
  min-height: 100vh;
}
.site-footer{
  color: white;
}
.app-links {
  text-align: center;
  margin: 40px 0;
}

.app-text {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: bold;
  color: gold;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.store-buttons img {
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}

.store-buttons img:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.btn:hover, .ai-btn:hover,.logout-btn:hover, .noyify-icon:hover {
  box-shadow: 
    0 0 25px rgba(0, 198, 255, 0.35),
    0 0 60px rgba(0, 114, 255, 0.25);
  transform: translateY(-3px);
}
/* ===== Footer ===== */
.site-footer {
  background: #ceecf9;
  color: #444;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-brand img {
  width: 50px;
  border-radius: 12px;
}

.footer-brand h3 {
  margin: 10px 0 8px;
  color: #0b3c91;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4 {
  margin-bottom: 12px;
  color: #0b3c91;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a img {
  width: 18px;
}

.footer-links a:hover {
  color: #0072ff;
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 13px;
  color: #777;
}
.notif-icon:hover{
opacity: 1;
}

#notificationIcon {
  position:fixed;
  top: 50px;
  right: 250px;
  font-size: 24px;
  text-decoration: none;
  cursor: pointer;
  z-index: 9999;

  background: rgba(255,255,255,0.1);
  padding: 10px 12px;
  border-radius: 50%;

  transition: transform 0.3s ease, background 0.3s ease;
}

.notification-wrapper {
  position: fixed;
  top: 50px;
  right: 250px;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10000;
}

.notification-wrapper i {
  display: block;
}

.notification-wrapper:hover {
  transform: scale(1.15);
}

#notificationDot {
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: red;
  border-radius: 50%;
  display: none;
}
.buttons button {
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 114, 255, 0.35);
  opacity: 0.95;
}

.avatar-container {
  text-align: center;
}

.avatar-edit,
.avatar-remove {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.avatar-edit {
  background: #0072ff;
  color: #fff;
}

.avatar-edit:hover {
  opacity: 0.9;
}

.avatar-remove {
  background: transparent;
  color: #ff4d4d;
  border: 1px solid #ff4d4d;
  margin-left: 8px;
}

.avatar-remove:hover {
  background: #ff4d4d;
  color: #fff;
}

/* PROFILE CARD */
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* AVATAR CONTAINER */
.avatar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* PROFILE IMAGE */
#avatarPreview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* CHANGE PHOTO LABEL */
.avatar-edit {
  background: #0aa84f;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
}

.avatar-edit:hover {
  background: #088a40;
}

/* REMOVE PHOTO BUTTON */
.remove-avatar-btn {
  background: transparent;
  color: #d9534f;
  border: none;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.remove-avatar-btn:hover {
  color: #b52b27;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}