@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap');

body {
  font-family: 'Vazirmatn', sans-serif;
  background: linear-gradient(135deg, #0c0c2e, #1a1a4a, #2d2d6b);
  color: #fff;
  transition: 0.5s;
  padding-bottom: 30px;
}

body.light {
  background: linear-gradient(135deg, #ffdde1, #ee9ca7, #a7bfe8);
  color: #222;
}

.container-fluid {
  padding: 0 15px;
}

.navbar {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  margin: 15px;
  padding: 15px 25px;
  box-shadow: 
    0px 8px 25px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.navbar h3 {
  font-weight: bold;
  background: linear-gradient(45deg, #ff6b6b, #ffa726, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 20px rgba(255,107,107,0.5);
}

body.light .navbar h3 {
  background: linear-gradient(45deg, #ff4081, #7b1fa2, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.theme-toggle {
  position: relative;
  display: inline-block;
}

.theme-toggle input {
  display: none;
}

.toggle-label {
  cursor: pointer;
  background: linear-gradient(45deg,#ff6b6b, #4ecdc4, #45b7d1);
  border-radius: 25px;
  padding: 10px 25px;
  transition: all 0.4s ease;
  color: white;
  font-size: 18px;
  border: none;
  margin-left: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.toggle-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.toggle-label:hover::before {
  left: 100%;
}

body.light .toggle-label {
  background: linear-gradient(45deg,#ff9a9e, #fad0c4, #fad0c4);
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* دسته‌بندی‌ها */
.category-card {
  background: linear-gradient(135deg, rgba(255,107,107,0.2), rgba(78,205,196,0.2));
  border-radius: 25px;
  padding: 20px 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 20px;
  box-shadow: 
    0 8px 25px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  text-align: center;
  margin: 8px 4px;
  border: 2px solid transparent;
  backdrop-filter: blur(5px);
}

.category-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 
    0 15px 35px rgba(255,107,107,0.4),
    0 5px 15px rgba(78,205,196,0.4);
}

.category-card h4 {
  margin-top: 10px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body.light .category-card {
  background: linear-gradient(135deg, rgba(255,154,158,0.3), rgba(250,208,196,0.3));
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

body.light .category-card:hover {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  border: 2px solid rgba(255,255,255,0.8);
}

body.light .category-card h4 {
  color: #333;
  text-shadow: none;
}

/* کارت‌های محصولات */
.food-card {
  margin-bottom: 20px;
  padding: 0 8px;
}

.food-card .card {
  background: linear-gradient(145deg, rgba(45,45,107,0.3), rgba(26,26,74,0.3));
  border: none;
  border-radius: 25px;
  transition: all 0.4s ease;
  box-shadow: 
    0 12px 30px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  margin: 5px 0;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.food-card .card:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.4),
    0 0 30px rgba(255,107,107,0.3);
  border: 2px solid rgba(255,107,107,0.5);
}

body.light .food-card .card {
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

body.light .food-card .card:hover {
  border: 2px solid rgba(255,154,158,0.6);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.15),
    0 0 30px rgba(255,154,158,0.3);
}

.food-card img {
  height: 160px;
  object-fit: cover;
  border-bottom: 3px solid rgba(255,107,107,0.3);
  transition: transform 0.3s ease;
}

.food-card:hover img {
  transform: scale(1.05);
}

body.light .food-card img {
  border-bottom: 3px solid rgba(255,154,158,0.3);
}

.card-body {
  padding: 20px 15px !important;
}

.menu-title {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
  padding: 25px;
  border-radius: 20px;
  margin: 40px 0 25px 0;
  text-align: center;
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border: 3px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.menu-title::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

body.light .menu-title {
  background: linear-gradient(45deg, #ff9a9e, #fad0c4, #a7bfe8);
  color: #333;
  border: 3px solid rgba(255,255,255,0.5);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* دکمه‌های کارتونی */
.cartoon-btn {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53, #FFD166);
    border: none;
    border-radius: 20px;
    padding: 16px 25px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 0 #FF4757,
        0 12px 20px rgba(255,107,107,0.4),
        inset 0 -4px 0 rgba(0,0,0,0.2),
        inset 0 4px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Vazirmatn', sans-serif;
    margin-top: 10px;
    width: 100%;
    border: 2px solid transparent;
}

.cartoon-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 0 #FF4757,
        0 18px 30px rgba(255,107,107,0.6),
        inset 0 -4px 0 rgba(0,0,0,0.2),
        inset 0 4px 0 rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.4);
    background: linear-gradient(45deg, #FF8E53, #FFD166, #FF6B6B);
}

.cartoon-btn:active {
    transform: translateY(2px);
    box-shadow: 
        0 4px 0 #FF4757,
        0 6px 15px rgba(255,107,107,0.3),
        inset 0 -4px 0 rgba(0,0,0,0.2);
}

.cartoon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.cartoon-btn:hover::before {
    left: 100%;
}

/* آیکون‌های متحرک */
.cartoon-btn .btn-icon {
    display: inline-block;
    margin-right: 8px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cartoon-btn:hover .btn-icon {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

/* استایل برای تم لایت */
body.light .cartoon-btn {
    background: linear-gradient(45deg, #4ECDC4, #44A08D, #2C7873);
    box-shadow: 
        0 8px 0 #3D9D94,
        0 12px 20px rgba(78,205,196,0.4),
        inset 0 -4px 0 rgba(0,0,0,0.15),
        inset 0 4px 0 rgba(255,255,255,0.4);
}

body.light .cartoon-btn:hover {
    box-shadow: 
        0 12px 0 #3D9D94,
        0 18px 30px rgba(78,205,196,0.6),
        inset 0 -4px 0 rgba(0,0,0,0.15),
        inset 0 4px 0 rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    background: linear-gradient(45deg, #44A08D, #2C7873, #4ECDC4);
}

body.light .cartoon-btn:active {
    box-shadow: 
        0 4px 0 #3D9D94,
        0 6px 15px rgba(78,205,196,0.3),
        inset 0 -4px 0 rgba(0,0,0,0.15);
}

/* انیمیشن موفقیت */
@keyframes successPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.btn-success-animation {
    animation: successPop 0.6s ease;
    background: linear-gradient(45deg, #2ED573, #1DD1A1, #10AC84) !important;
    box-shadow: 
        0 8px 0 #10AC84,
        0 12px 20px rgba(46,213,115,0.5) !important;
}

.price {
  font-weight: bold;
  font-size: 1.3rem;
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body.light .price {
  background: linear-gradient(45deg, #ff4081, #7b1fa2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cart-icon {
  cursor: pointer;
  font-size: 1.6rem;
  position: relative;
  transition: all 0.3s ease;
  margin-left: 15px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cart-icon:hover {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.cart-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #1a1a4a;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  font-weight: bold;
}

body.light .cart-badge {
  border: 3px solid white;
  background: linear-gradient(45deg, #ff4081, #7b1fa2);
}

/* مودال سبد خرید */
.modal-content {
  border-radius: 25px;
  overflow: hidden;
  border: 3px solid rgba(255,107,107,0.3);
  background: linear-gradient(135deg, #1a1a4a, #2d2d6b);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.modal-header {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 25px;
  border-bottom: 3px solid rgba(255,255,255,0.2);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body.light .modal-header {
  background: linear-gradient(45deg, #ff9a9e, #a7bfe8);
  color: #333;
  border-bottom: 3px solid rgba(255,255,255,0.5);
}

.modal-body {
  padding: 30px;
  background: rgba(255,255,255,0.05);
}

.modal-footer {
  padding: 25px;
  border-top: 2px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
}

/* فاصله‌های عمومی */
.row {
  margin-left: -8px;
  margin-right: -8px;
}

.col-6 {
  padding-left: 8px;
  padding-right: 8px;
}

/* سرچ باکس */
.search-box {
  margin: 25px 0;
}

.form-control {
  border-radius: 20px;
  padding: 15px 25px;
  border: 2px solid rgba(255,107,107,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

body.light .form-control {
  border: 2px solid rgba(255,154,158,0.5);
  background: rgba(255,255,255,0.9);
  color: #333;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

body.light .form-control::placeholder {
  color: rgba(0,0,0,0.5);
}

.form-control:focus {
  border-color: #ff6b6b;
  box-shadow: 
    0 0 0 0.3rem rgba(255, 107, 107, 0.25),
    inset 0 2px 10px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.15);
}

body.light .form-control:focus {
  border-color: #ff9a9e;
  box-shadow: 
    0 0 0 0.3rem rgba(255, 154, 158, 0.25),
    inset 0 2px 10px rgba(0,0,0,0.1);
  background: rgba(255,255,255,1);
}

/* استایل‌های ریسپانسیو برای موبایل */
@media (max-width: 768px) {
  .food-card {
    margin-bottom: 15px;
    padding: 0 5px;
  }
  
  .col-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .food-card .card {
    margin: 5px 0;
  }
  
  .card-body {
    padding: 20px 15px !important;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-text {
    font-size: 1rem;
  }
  
  .price {
    font-size: 1.1rem;
  }
  
  /* دکمه‌های کارتونی در موبایل */
  .cartoon-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
  
  /* دسته‌بندی‌ها در موبایل */
  .category-card {
    padding: 18px 8px;
    font-size: 19px;
    margin: 6px 3px;
  }
  
  .category-card h4 {
    font-size: 15px;
  }
  
  /* منو تایتل در موبایل */
  .menu-title {
    padding: 20px;
    margin: 30px 0 20px 0;
    font-size: 1.4rem;
  }
  
  /* ناوبار در موبایل */
  .navbar {
    margin: 12px 8px;
    padding: 12px 20px;
  }
  
  .navbar h3 {
    font-size: 1.4rem;
  }
  
  .toggle-label {
    padding: 8px 18px;
    font-size: 17px;
  }
  
  .cart-icon {
    font-size: 1.4rem;
  }
  
  /* مودال سبد خرید در موبایل */
  .modal-dialog {
    margin: 15px;
  }
  
  .modal-content {
    border-radius: 20px;
  }
  
  .modal-header, .modal-footer {
    padding: 20px;
  }
  
  .modal-body {
    padding: 20px;
  }
}

/* انیمیشن‌های اضافی */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.category-card:hover {
  animation: float 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,107,107,0.5); }
  50% { box-shadow: 0 0 40px rgba(255,107,107,0.8), 0 0 60px rgba(78,205,196,0.6); }
}

.food-card .card:hover {
  animation: glow 2s ease-in-out infinite;
}
/* مشکل: متن تیره روی پس‌زمینه تیره */
.modal-body {
  padding: 30px;
  background: rgba(255,255,255,0.05);
  color: #fff; /* اضافه شد */
}

.modal-body p {
  color: #fff !important;
  opacity: 0.9;
}

body.light .modal-body {
  color: #333; /* برای تم لایت */
}

body.light .modal-body p {
  color: #333 !important;
}
/* مشکل: فاصله کم بین لوگو و متن */
.navbar .d-flex.align-items-center {
  gap: 15px; /* افزایش فاصله */
}

.navbar img {
  margin-left: 15px; /* فاصله بیشتر از متن */
}
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap');

body {
  font-family: 'Vazirmatn', sans-serif;
  background: linear-gradient(135deg, #0c0c2e, #1a1a4a, #2d2d6b);
  color: #fff;
  transition: 0.5s;
  padding-bottom: 30px;
}

body.light {
  background: linear-gradient(135deg, #ffdde1, #ee9ca7, #a7bfe8);
  color: #222;
}

.container-fluid {
  padding: 0 15px;
}

.navbar {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  margin: 15px;
  padding: 15px 25px;
  box-shadow: 
    0px 8px 25px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* افزایش فاصله لوگو و اسم کافه */
.navbar .d-flex.align-items-center {
  gap: 15px;
}

.navbar img {
  margin-left: 15px;
}

.navbar h3 {
  font-weight: bold;
  background: linear-gradient(45deg, #ff6b6b, #ffa726, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 20px rgba(255,107,107,0.5);
}

body.light .navbar h3 {
  background: linear-gradient(45deg, #ff4081, #7b1fa2, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.theme-toggle {
  position: relative;
  display: inline-block;
}

.theme-toggle input {
  display: none;
}

.toggle-label {
  cursor: pointer;
  background: linear-gradient(45deg,#ff6b6b, #4ecdc4, #45b7d1);
  border-radius: 25px;
  padding: 10px 25px;
  transition: all 0.4s ease;
  color: white;
  font-size: 18px;
  border: none;
  margin-left: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.toggle-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.toggle-label:hover::before {
  left: 100%;
}

body.light .toggle-label {
  background: linear-gradient(45deg,#ff0008, #ff3700, #ff3700);
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* دسته‌بندی‌ها */
.category-card {
  background: linear-gradient(135deg, rgba(255,107,107,0.2), rgba(78,205,196,0.2));
  border-radius: 25px;
  padding: 20px 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 20px;
  box-shadow: 
    0 8px 25px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  text-align: center;
  margin: 8px 4px;
  border: 2px solid transparent;
  backdrop-filter: blur(5px);
}

/* استایل‌های ریسپانسیو برای موبایل - بهبود یافته */
@media (max-width: 768px) {
  .navbar {
    margin: 12px 8px;
    padding: 12px 15px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .navbar .d-flex.align-items-center {
    gap: 10px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .navbar img {
    width: 50px !important;
    height: 50px !important;
    margin-left: 8px;
  }

  .navbar h3 {
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* بخش راست هدر در موبایل */
  .navbar > .d-flex.align-items-center:last-child {
    gap: 8px;
    flex-shrink: 0;
  }

  .toggle-label {
    padding: 8px 15px;
    font-size: 14px;
    margin-left: 5px;
  }

  .cart-icon {
    font-size: 1.3rem;
    margin-left: 8px;
  }

  .cart-badge {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    top: -8px;
    right: -8px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 12px;
    gap: 8px;
  }

  .navbar img {
    width: 45px !important;
    height: 45px !important;
    margin-left: 5px;
  }

  .navbar h3 {
    font-size: 1.1rem;
  }

  .toggle-label {
    padding: 6px 12px;
    font-size: 12px;
  }

  .cart-icon {
    font-size: 1.2rem;
  }
}
/* استایل‌های بازی حکم */
.game-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.qr-code-container {
  border: 2px dashed #dee2e6;
}

.players-list .player-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid #eee;
}

.players-list .player-item:last-child {
  border-bottom: none;
}

.player-status {
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
}

.status-connected {
  background: #d4edda;
  color: #155724;
}

.status-waiting {
  background: #fff3cd;
  color: #856404;
}

/* استایل کارت‌ها */
.card-item {
  width: 50px;
  height: 70px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-item.playable {
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

.card-top, .card-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.card-value {
  font-weight: bold;
}

.card-suit {
  font-size: 0.9rem;
}

/* رنگ‌های suits */
.suit-hearts, .suit-diamonds {
  color: #dc3545;
}

.suit-clubs, .suit-spades {
  color: #212529;
}

/* کارت‌های بازی شده */
.played-card {
  width: 45px;
  height: 63px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px;
  font-size: 0.65rem;
}

/* حالت تاریک */
body.dark-mode .card-item,
body.dark-mode .played-card {
  background: #2d3748;
  border-color: #4a5568;
  color: #e2e8f0;
}

body.dark-mode .opponent-card,
body.dark-mode .play-area,
body.dark-mode .players-status {
  background: #2d3748 !important;
  color: #e2e8f0;
}

body.dark-mode .qr-code-container {
  background: #2d3748 !important;
  border-color: #4a5568;
}