html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* استایل‌های هدر */
.navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand-box {
    padding: 0 15px;
}

.header-item {
    border: none;
    background: transparent;
    padding: 0 10px;
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
}

    .header-item:hover {
        color: #667eea;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.2s ease;
}

    .dropdown-item:hover {
        background: #f8f9fa;
        color: #667eea;
    }

    .dropdown-item i {
        font-size: 16px;
        width: 20px;
        text-align: center;
    }

/* دکمه پروفایل */
.btn-link.nav-link {
    text-decoration: none;
    color: #333;
    padding: 0 10px;
}

    .btn-link.nav-link:hover {
        color: #667eea;
    }

/* ریسپانسیو */
@media (max-width: 768px) {
    .navbar-header {
        padding: 0 10px;
    }

    .navbar-brand-box .logo-lg {
        display: none;
    }

    .navbar-brand-box .logo-sm {
        display: inline-block;
    }

    .d-none.d-md-block.ms-2 {
        display: none !important;
    }
}

.badge{
    color:black !important;
}