@import url('https://cdn.fontcdn.ir/Font/Persian/Vazir/Vazir.css');

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Vazir', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 10px;
  overflow-x: hidden;
}

.main-container,
.container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.auth-container {
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.auth-card h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff99;
  text-align: center;
}

.auth-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: bold;
  color: #aef;
}

.form-group input,
.form-group select {
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
  width: 100%;
  backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px #00ffff55;
}

/* استایل input file */
input[type="file"] {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color 0.3s ease;
}

input[type="file"]::file-selector-button {
  background-color: #00f7ff;
  color: #000;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 10px;
  transition: background-color 0.3s;
}

input[type="file"]::file-selector-button:hover {
  background-color: #00bcd4;
}

/* دکمه‌ها */
.next-btn, button[type="submit"], .btn-dashboard {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: #fff;
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
  width: 100%;
}

.next-btn:hover, button[type="submit"]:hover, .btn-dashboard:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,255,255,0.3);
}

.btn-dashboard {
  background-color: #0072ff;
}

.btn-dashboard:hover {
  background-color: #005cbf;
}

.btn-dashboard:focus {
  outline: none;
}

/* کارت خوش‌آمدگویی */
.welcome-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.welcome-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.welcome-card p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* انیمیشن */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* اورلی راهنما */
.guide-overlay {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.blur-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.guide-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  animation: fadeIn 0.7s ease;
}

.avatar {
  width: 110px;
  height: 110px;
  background: url('/assets/icons/character-avatar.png') no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 0 20px #00f2ff88;
  border: 3px solid rgba(56, 249, 215, 0.5);
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 0 15px #00ffff22;
  color: #fff;
  margin-bottom: 15px;
}

.guide-title {
  font-weight: bold;
  color: #00ffff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* نسخه موبایل */
@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .main-container,
  .auth-container {
    padding: 15px;
    width: 100%;
  }

  .glass-card {
    padding: 25px 15px;
    width: 100%;
  }

  .btn-container button {
    width: 100%;
    font-size: 1rem;
  }

  .chat-bubble {
    font-size: 1rem;
    padding: 14px;
  }

  .avatar {
    width: 90px;
    height: 90px;
  }

  .auth-card h2 {
    font-size: 1.6rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.95rem;
  }

  .next-btn, button[type="submit"] {
    font-size: 0.95rem;
    padding: 12px;
  }
}
body {
  margin: 0;
  background: #0f2027;
  background: linear-gradient(to right, #2c5364, #203a43, #0f2027);
  font-family: 'Vazir', sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  color: white;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.avatar {
  width: 100px;
  height: 100px;
  background: url('/assets/icons/character-avatar.png') no-repeat center;
  background-size: cover;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
  min-height: 60px;
  font-size: 1rem;
  position: relative;
}

.cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.btn-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.btn-container button {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 114, 255, 0.4);
}

.btn-container button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.guide-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
/* استایل کلی داشبورد کاربری */
.dashboard-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* هدر داشبورد */
.dashboard-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.dashboard-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

/* بخش پروفایل */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.profile-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: url('uploads/<?php echo $car_model; ?>.jpg') no-repeat center center; /* تصویر ماشین به عنوان پس‌زمینه پروفایل */
    background-size: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.profile-image-container::after {
    content: '<?php echo $level; ?> Lvl'; /* نمایش لول */
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 12px;
    background-color: #38f9d7;
    color: #fff;
    padding: 5px 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

/* اطلاعات پروفایل */
.profile-info {
    margin-top: 20px;
    color: #f0f0f0;
    font-size: 1rem;
    text-align: center;
}

.profile-info p {
    margin: 5px 0;
}

/* استایل بخش اطلاعات خودرو */
.car-info {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.car-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #38f9d7;
    text-align: center;
}

.car-info p {
    font-size: 1rem;
    color: #aaa;
    margin: 8px 0;
}

/* نمایش کاربران آنلاین */
.online-users {
    margin-top: 30px;
}

.online-users h3 {
    font-size: 1.6rem;
    color: #38f9d7;
}

.online-users ul {
    list-style-type: none;
    padding: 0;
}

.online-users li {
    font-size: 1rem;
    color: #fff;
    padding: 5px 0;
}

/* دکمه‌های داشبورد */
.dashboard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.dashboard-footer .btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #38f9d7;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.dashboard-footer .btn:hover {
    background-color: #28b7a3;
}

.dashboard-footer .btn-danger {
    background-color: #ff4e42;
}

.dashboard-footer .btn-danger:hover {
    background-color: #e03e2d;
}

/* استایل برای موبایل‌ها */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 15px;
    }

    .profile-image-container {
        width: 100px;
        height: 100px;
    }

    .profile-info p {
        font-size: 0.9rem;
    }

    .car-info, .online-users {
        padding: 15px;
    }

    .dashboard-footer .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
* {
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  color: #fff;
  font-family: 'Vazir', sans-serif;
  margin: 0;
  padding: 20px;
}

.dashboard {
  max-width: 900px;
  margin: auto;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px #00ffff33;
}

.profile-box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #00f7ff;
  object-fit: cover;
  margin-left: 20px;
  position: relative;
}

.level-circle {
  position: absolute;
  bottom: -5px;
  left: -5px;
  background: #111;
  color: #0f0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #0f0;
}

.progress-box {
  margin: 15px 0;
}

.progress-bar {
  height: 15px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, lime, green);
  width: <?php echo $progress_percent; ?>%;
  transition: width 0.4s;
}

.timer {
  font-size: 14px;
  color: #ccc;
}

.online-section {
  background: #1d1d1d;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.online-section ul {
  list-style: none;
  padding: 0;
}

.online-section li {
  padding: 5px 0;
  border-bottom: 1px solid #333;
}

.pagination {
  margin-top: 10px;
  text-align: center;
}

.pagination a {
  color: #0f0;
  margin: 0 5px;
  text-decoration: none;
}

.stats {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.stats ul {
  list-style: none;
  padding: 0;
}

.stats li {
  margin-bottom: 5px;
}

/* 🔻 برای موبایل */
@media screen and (max-width: 600px) {
  .dashboard {
    padding: 15px;
  }

  .profile-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-img {
    width: 80px;
    height: 80px;
  }

  .level-circle {
    font-size: 12px;
    padding: 3px 8px;
  }

  .progress-bar {
    height: 10px;
  }

  .online-section li,
  .stats li {
    font-size: 13px;
  }

  .pagination a {
    font-size: 12px;
  }
}
* {
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  color: #fff;
  font-family: 'Vazir', sans-serif;
  margin: 0;
  padding: 20px;
  overflow-x: hidden;
}

.dashboard {
  max-width: 100%;
  margin: auto;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px #00ffff33;
  width: 100%;
}

.profile-box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.profile-img {
  width: 25vw; /* 25% of the screen width */
  height: 25vw; /* 25% of the screen width */
  border-radius: 50%;
  border: 3px solid #00f7ff;
  object-fit: cover;
  margin-left: 20px;
  position: relative;
}

.level-circle {
  position: absolute;
  bottom: -5px;
  left: -5px;
  background: #111;
  color: #0f0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #0f0;
}

.progress-box {
  margin: 15px 0;
}

.progress-bar {
  height: 15px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, lime, green);
  width: <?php echo $progress_percent; ?>%;
  transition: width 0.4s;
}

.timer {
  font-size: 14px;
  color: #ccc;
}

.online-section {
  background: #1d1d1d;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.online-section ul {
  list-style: none;
  padding: 0;
}

.online-section li {
  padding: 5px 0;
  border-bottom: 1px solid #333;
}

.pagination {
  margin-top: 10px;
  text-align: center;
}

.pagination a {
  color: #0f0;
  margin: 0 5px;
  text-decoration: none;
}

.stats {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.stats ul {
  list-style: none;
  padding: 0;
}

.stats li {
  margin-bottom: 5px;
}

/* مدیا کوئری برای موبایل */
@media screen and (max-width: 768px) {
  .profile-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-img {
    width: 30vw; /* 30% of the screen width */
    height: 30vw; /* 30% of the screen width */
  }

  .level-circle {
    font-size: 12px;
    padding: 3px 8px;
  }

  .progress-bar {
    height: 12px;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, lime, green);
    width: <?php echo $progress_percent; ?>%;
  }

  .timer {
    font-size: 12px;
    padding: 5px;
  }

  .online-section li,
  .stats li {
    font-size: 13px;
  }

  .pagination a {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding: 10px;
  }

  .dashboard {
    padding: 10px;
  }

  .profile-img {
    width: 35vw; /* 35% of the screen width */
    height: 35vw; /* 35% of the screen width */
  }

  .level-circle {
    font-size: 10px;
    padding: 2px 6px;
  }

  .progress-bar {
    height: 10px;
  }

  .timer {
    font-size: 11px;
  }
}
/* استایل عمومی */
body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  font-family: 'Vazir', sans-serif;
  margin: 0;
  padding: 20px;
  overflow-x: hidden;
}

/* داشبورد */
.dashboard-container {
  max-width: 900px;
  margin: auto;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px #00ffff33;
}

/* هدر داشبورد */
.dashboard-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}

.dashboard-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #00f7ff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff;
}

/* پروفایل */
.profile-box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  justify-content: center;
  text-align: center;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #00f7ff;
  object-fit: cover;
  margin-left: 20px;
  position: relative;
}

.level-circle {
  position: absolute;
  bottom: -5px;
  left: -5px;
  background: #111;
  color: #0f0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #0f0;
}

.progress-box {
  margin: 15px 0;
}

.progress-bar {
  height: 15px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, lime, green);
  width: 70%; /* از پیشرفت واقعی شما استفاده کن */
  transition: width 0.4s;
}

.timer {
  font-size: 14px;
  color: #ccc;
}

/* بخش کاربران آنلاین */
.online-section {
  background: #1d1d1d;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.online-section ul {
  list-style: none;
  padding: 0;
}

.online-section li {
  padding: 5px 0;
  border-bottom: 1px solid #333;
}

.pagination {
  margin-top: 10px;
  text-align: center;
}

.pagination a {
  color: #00f7ff;
  margin: 0 5px;
  text-decoration: none;
}

/* آمار کاربران */
.stats {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.stats ul {
  list-style: none;
  padding: 0;
}

.stats li {
  margin-bottom: 5px;
}

/* دکمه‌ها */
.next-btn, button[type="submit"], .btn-dashboard {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: #fff;
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
  width: 100%;
}

.next-btn:hover, button[type="submit"]:hover, .btn-dashboard:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,255,255,0.3);
}

.btn-dashboard {
  background-color: #0072ff;
}

.btn-dashboard:hover {
  background-color: #005cbf;
}

.btn-dashboard:focus {
  outline: none;
}

/* منوی پایین */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #292929;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #444;
  z-index: 1000;
}

.bottom-nav a {
  text-decoration: none;
  color: #bbb;
  font-size: 14px;
  text-align: center;
}

.bottom-nav .nav-btn:hover {
  color: #fff;
}

.bottom-nav .nav-logo {
  position: relative;
  top: -25px;
  background: #00f7ff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.bottom-nav .nav-logo:hover {
  background-color: #00d4d4;
  box-shadow: 0 0 25px rgba(0,255,255,0.6);
  transform: translateY(-20px) scale(1.1);
}

.bottom-nav .nav-logo img {
  width: 40px;
  height: 40px;
}

/* موبایل */
@media screen and (max-width: 768px) {
  .dashboard-container {
    padding: 15px;
  }

  .profile-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-img {
    width: 80px;
    height: 80px;
  }

  .level-circle {
    font-size: 12px;
    padding: 3px 8px;
  }

  .progress-bar {
    height: 10px;
  }

  .online-section li,
  .stats li {
    font-size: 13px;
  }

  .pagination a {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .profile-img {
    width: 35vw;
    height: 35vw;
  }

  .level-circle {
    font-size: 10px;
    padding: 2px 6px;
  }

  .progress-bar {
    height: 10px;
  }

  .timer {
    font-size: 11px;
  }
}
/* طراحی جدید منوی پایین */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.85); /* رنگ پس‌زمینه تیره‌تر */
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px; /* فاصله بیشتر از گوشه‌ها */
  border-top: 2px solid rgba(0, 255, 255, 0.4); /* خط بالای منو کمی برجسته‌تر */
  z-index: 1000;
  backdrop-filter: blur(10px); /* افکت بلور پس‌زمینه */
  border-radius: 10px 10px 0 0; /* گوشه‌های گرد */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* سایه برای منو */
}

/* طراحی دکمه‌های منو */
.bottom-nav .nav-btn {
  color: #bbb;
  text-decoration: none;
  font-size: 16px;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}

.bottom-nav .nav-btn:hover {
  color: #00ffff; /* رنگ روشن‌تر برای افکت هاور */
  transform: scale(1.1); /* بزرگ‌تر شدن دکمه */
}

.bottom-nav .nav-logo {
  background-color: #00f7ff; /* رنگ آبی برای لوگو */
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); /* سایه برای لوگو */
  transition: all 0.3s ease-in-out;
}

.bottom-nav .nav-logo:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 1); /* سایه برجسته‌تر برای لوگو */
  transform: translateY(-5px) scale(1.1); /* انیمیشن کوچک لوگو */
}

.bottom-nav .nav-logo img {
  width: 40px;
  height: 40px;
}

/* جلوگیری از رفتن محتوا به پشت منو */
body {
  padding-bottom: 80px; /* فاصله بیشتر در پایین صفحه برای جلوگیری از تداخل */
}

/* موبایل */
@media screen and (max-width: 768px) {
  .bottom-nav {
    height: 60px; /* تغییر ارتفاع منو در موبایل */
    font-size: 14px;
    padding: 8px 15px;
  }

  .bottom-nav .nav-logo img {
    width: 36px;
    height: 36px;
  }
}

@media screen and (max-width: 480px) {
  .bottom-nav {
    height: 55px; /* تغییر ارتفاع منو در موبایل‌های خیلی کوچک */
  }

  .bottom-nav .nav-logo img {
    width: 32px;
    height: 32px;
  }

  .bottom-nav .nav-btn {
    font-size: 14px;
  }
}
/* فیکس رنگ متن برای select و option */
select {
  color: #000;          /* رنگ متن مشکی */
  background-color: #fff; /* پس‌زمینه سفید */
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 5px;
  appearance: none; /* حذف استایل پیش‌فرض مرورگر */
}

select option {
  color: #000;          /* رنگ متن مشکی برای گزینه‌ها */
  background-color: #fff; /* پس‌زمینه سفید برای گزینه‌ها */
}

/* اگر بخوای آیکون کشویی هم درست بشه */
select::-ms-expand {
  display: none; /* مخفی کردن آیکون پیش‌فرض در IE/Edge */
}

/* برای موبایل و مرورگرهای مدرن */
select:focus {
  outline: none;
  border-color: #666;
}

