/* Apple Tarzı Minimalistik Tasarım */
:root {
  --apple-primary: #0071e3;
  --apple-primary-hover: #0064c8;
  --apple-light-gray: #f5f5f7;
  --apple-gray: #86868b;
  --apple-dark-gray: #424245;
  --apple-black: #1d1d1f;
  --apple-white: #ffffff;
  --apple-red: #ff3b30;
  --apple-yellow: #ffcc00;
  --apple-green: #34c759;
  --font-sf-pro: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --border-radius: 10px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --primary-color: #007aff;
  --secondary-color: #5856d6;
  --success-color: #34c759;
  --warning-color: #ff9500;
  --danger-color: #ff3b30;
  --info-color: #5ac8fa;
  --dark-color: #1c1c1e;
  --light-color: #f2f2f7;
  --background-color: #f2f2f7;
  --text-color: #1d1d1f;
  --error-color: #ff3b30;
  --transition: all 0.3s ease;
}

/* CKEditor 4.22.1 sürüm uyarısını KESİN olarak gizler */
.cke_wysiwyg_frame ~ .cke_notifications_area,
.cke_notifications_area,
.cke_notification_message,
.cke_notification_warning {
  display: none !important;
}

.container-new {
  padding-left: 2% !important;
  padding-right: 2% !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


/* Genel Stil */
body {
  font-family: var(--font-sf-pro);
  color: var(--apple-black);
  background-color: var(--apple-light-gray);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
@keyframes pulse {
  0% {
    background-color: #fff3cd;
  }

  50% {
    background-color: #ffeeba;
  }

  100% {
    background-color: #fff3cd;
  }
}

.pulse-highlight {
  animation: pulse 1.2s infinite;
}
/* Login sayfası için özel body stili */
body.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
}

/* Navbar Stili */
.navbar {
  background-color: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--apple-black) !important;
}

.nav-link {
  color: var(--apple-black) !important;
  font-weight: 500;
  padding: 8px 15px !important;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Kart Stili */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
  background-color: var(--apple-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.25rem 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

/* Buton Stili */
.btn {
  border-radius: 20px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--apple-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--apple-primary-hover);
}

.btn-sm {
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
}

.btn-info {
  background-color: var(--apple-primary);
  color: white;
}

.btn-info:hover,
.btn-info:focus {
  background-color: var(--apple-primary-hover);
  color: white;
}

.btn-success {
  background-color: var(--apple-green);
}

.btn-warning {
  background-color: var(--apple-yellow);
  color: var(--apple-black);
}

.btn-danger {
  background-color: var(--apple-red);
}

/* Form Stili */
.form-control,
.form-select {
  border-radius: var(--border-radius);
  padding: 0.7rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--apple-primary);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}

.form-label {
  font-weight: 500;
  color: var(--apple-dark-gray);
  margin-bottom: 0.5rem;
}

.form-check-input:checked {
  background-color: var(--apple-primary);
  border-color: var(--apple-primary);
}

/* Tablo Stili */
.table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.table th {
  font-weight: 600;
  color: var(--apple-dark-gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem;
}

.table td {
  padding: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Badge Stili */
.badge {
  padding: 0.5em 0.8em;
  font-weight: 500;
  border-radius: 12px;
  font-size: 0.75rem;
}

.badge-waiting,
.bg-warning {
  background-color: var(--apple-yellow) !important;
  color: var(--apple-black) !important;
}

.badge-washing,
.bg-info {
  background-color: var(--apple-primary) !important;
  color: white !important;
}

.badge-completed,
.bg-success {
  background-color: var(--apple-green) !important;
  color: white !important;
}

/* Alert Stili */
.alert {
  border: none;
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
}

.alert-success {
  background-color: rgba(52, 199, 89, 0.1);
  color: var(--apple-green);
}

.alert-danger {
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--apple-red);
}

.alert-warning {
  background-color: rgba(255, 204, 0, 0.1);
  color: var(--apple-black);
}

.alert-info {
  background-color: rgba(0, 113, 227, 0.1);
  color: var(--apple-primary);
}

/* Modal Stili */
.modal {
  z-index: 9999 !important;
}

.modal-backdrop {
  z-index: 9998 !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-dialog {
  z-index: 9999 !important;
  margin: 1.75rem auto;
  max-width: 500px;
  width: calc(100% - 2rem);
}

.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: visible;
  position: relative;
  width: 100%;
  background: var(--apple-white);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  position: relative;
  background: transparent;
}

.modal-body {
  padding: 1.5rem;
  max-height: calc(100vh - 210px);
  overflow-y: auto;
  background: transparent;
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  background: transparent;
}

.modal-title {
  font-weight: 600;
}

/* Özel Komponenetler */
.washing-card {
  background-color: var(--apple-white);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.washing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.washing-card.waiting {
  border-left: 4px solid var(--apple-yellow);
}

.washing-card.washing {
  border-left: 4px solid var(--apple-primary);
}

.washing-card.completed {
  border-left: 4px solid var(--apple-green);
}

/* Sekmeler Stili */
.nav-tabs {
  border-bottom: none;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.nav-tabs .nav-item {
  margin-bottom: 0;
}

.nav-tabs .nav-link {
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 20px;
  font-weight: 500;
  color: var(--apple-gray) !important;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.nav-tabs .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--apple-dark-gray) !important;
}

.nav-tabs .nav-link.active {
  background-color: var(--apple-white);
  color: var(--apple-primary) !important;
  box-shadow: var(--shadow);
}

/* Ana İçerik */
.main-content {
  padding-top: 80px;
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
}

/* Kullanıcı Menüsü */
.user-menu {
  display: flex;
  align-items: center;
  padding: 6px 15px !important;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--apple-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Mobil Alt Menü */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  z-index: 1000;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--dark-color);
  padding: 0.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-nav-item i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.mobile-nav-item span {
  font-size: 0.75rem;
  font-weight: 500;
}

.mobile-nav-item.active {
  color: var(--primary-color);
}

.mobile-nav-item:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Mobil Uyumlu Ayarlar */
@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
    /* padding-bottom: 4.5rem; */
  }

  .main-content {
    padding-top: 70px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 80px; /* Mobil menü için boşluk */
  }

  .card-header,
  .card-body,
  .modal-header,
  .modal-footer {
    padding: 1rem;
  }

  .table th,
  .table td {
    padding: 0.75rem;
  }

  .btn {
    padding: 0.5rem 1.2rem;
  }

  .nav-tabs .nav-link {
    padding: 0.6rem 1rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* iPhone Deneyimi için Özel Stiller */
@media (max-width: 576px) {
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .modal-dialog {
    margin: 0.5rem;
  }

  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .card {
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0;
  }

  .modal-content {
    border-radius: var(--border-radius);
  }

  /* iPhone bottom bar için padding */
  /*  .container {  padding-bottom: 80px; }*/

  /* İşlem butonlarını alt kısımda sabitle */
  .fixed-bottom-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
  }

  .fixed-bottom-actions .btn {
    flex: 1;
    margin: 0 0.25rem;
  }
}

/* Login Sayfası Stilleri */
.login-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.login-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  /* -webkit-background-clip: text; */
}

.login-header p {
  color: #86868b;
  font-size: 16px;
}

.form-group {
  margin-bottom: 24px;
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.forgot-password {
  display: block;
  text-align: right;
  margin-top: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 14px;
}

.forgot-password:hover {
  color: #0056b3;
}

.btn-login {
  width: 100%;
  padding: 16px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-login:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  color: #86868b;
  font-size: 14px;
}

.login-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.login-footer a:hover {
  color: #0056b3;
}

.alert {
  padding: 16px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  font-size: 14px;
}

.alert-danger {
  background: rgba(255, 59, 48, 0.1);
  color: var(--error-color);
  border: 1px solid rgba(255, 59, 48, 0.2);
}

@media (max-width: 480px) {
  .login-card {
    padding: 30px 20px;
  }

  .login-header h1 {
    font-size: 24px;
  }

  .login-header p {
    font-size: 14px;
  }

  .form-control {
    padding: 14px;
  }

  .btn-login {
    padding: 14px;
  }
}
/*
    :root {
        --background-color: #000000;
        --dark-color: #FFFFFF;
        --light-color: #1C1C1E;
    }
    
    body {
        background-color: var(--background-color);
        color: var(--dark-color);
    }
    
    .card, .modal-content {
        background: rgba(28, 28, 30, 0.9);
    }
    
    .form-control, .form-select {
        background-color: rgba(28, 28, 30, 0.8);
        color: var(--dark-color);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .form-label {
        color: var(--dark-color) !important;
    }
    
    .modal-title, .modal-body {
        color: var(--dark-color);
    }

    input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .table {
        background: #1C1C1E;
        color: var(--dark-color);
    }
    
    .navbar {
        background-color: rgba(28, 28, 30, 0.8) !important;
    }
    
    .navbar-brand, .nav-link {
        color: var(--dark-color) !important;
    }
    
    .nav-link:hover, .nav-link.active {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-bottom-nav {
        background: rgba(28, 28, 30, 0.9);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-item {
        color: var(--light-color);
    }
    
    .mobile-nav-item.active {
        color: var(--primary-color);
    }

    .modal-content {
        background: var(--dark-color);
        color: var(--light-color);
    }

    .modal-header, .modal-footer {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .modal-backdrop {
        background-color: rgba(0, 0, 0, 0.7) !important;
    }
} */

/* Tab Menüsü */
.status-tabs {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.status-tabs .nav-pills {
  gap: 0.5rem;
}

.status-tabs .nav-link {
  color: var(--dark-color);
  border-radius: 15px;
  padding: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.status-tabs .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.status-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 122, 255, 0.2);
}

.status-tabs .badge {
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
}

/* Dark Mode için Tab Menüsü */
/* @media (prefers-color-scheme: dark) {
    .status-tabs {
        background: rgba(28, 28, 30, 0.9);
    }
    
    .status-tabs .nav-link {
        color: var(--light-color);
    }
    
    .status-tabs .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .status-tabs .badge {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--light-color) !important;
    }
} */

/* Footer Styles */
.footer {
  background-color: #343a40;
  color: #fff;
  padding: 1rem 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
}

.footer-copyright {
  color: #adb5bd;
  font-size: 0.9rem;
}

/* Animasyonlar */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 16px;
  color: #86868b;
  font-size: 16px;
}

.input-group .form-control {
  padding-left: 45px;
}

/* Dashboard Container */
.dashboard-container {
  padding: 20px;
  max-width: 1200px;
  margin: 80px auto 0; /* Header'ın altında kalmasi için margin-top ekledim */
  width: 100%;
  box-sizing: border-box;
}

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--apple-white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.operations-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .dashboard-container {
    padding: 15px;
    margin-top: 60px;
  }

  .operations-container {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 15px;
  }
}

/* Yeni Yıkama İşlemi Kartı */
.new-operation-card {
  background: var(--apple-white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.new-operation-card h2 {
  color: var(--apple-black);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 30px 0;
}

/* Arama Formu - Yeni Tasarım */
#searchForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.search-container {
  position: relative;
  width: 100%;
  background: var(--apple-light-gray);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 4px;
}

.search-container:focus-within {
  background: var(--apple-white);
  box-shadow: 0 0 0 2px var(--apple-primary);
}

.search-input {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border: none;
  background: transparent;
  font-size: 16px;
  color: var(--apple-black);
  border-radius: 16px;
  -webkit-appearance: none;
  appearance: none;
}

.search-input:focus {
  outline: none;
  box-shadow: none;
}

.search-input::placeholder {
  color: var(--apple-gray);
}

.search-button {
  width: 80%;
  height: 50px;
  border-radius: 12px;
  background: var(--apple-primary);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 12px auto;
  -webkit-appearance: none;
  appearance: none;
}

/* Masaüstü için özel stiller */
@media (min-width: 769px) {
  #searchForm {
    flex-direction: row;
    align-items: stretch;
  }

  .search-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 4px;
    border-radius: 12px;
  }

  .search-input {
    height: 44px;
    font-size: 15px;
    padding: 0 16px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .search-button {
    width: auto;
    min-width: 120px;
    height: 44px;
    margin: 0;
    margin-left: 8px;
    font-size: 14px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
/* customer/assets/css/style.css veya /assets/css/style.css */
.campaign-card {
  height: 400px; /* sabit yükseklik */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.campaign-card img {
  height: 200px;
  object-fit: cover;
}

.campaign-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Dark mode için özel stiller */
/* @media (prefers-color-scheme: dark) {
    .search-container {
        background: rgba(28, 28, 30, 0.8);
    }

    .search-container:focus-within {
        background: rgba(28, 28, 30, 0.95);
    }

    .search-input {
        color: var(--apple-white);
    }

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
} */

.stat-card {
  background: var(--apple-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.2s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .fas {
  font-size: 2.5rem;
  opacity: 0.9;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(var(--icon-bg-rgb), 0.1);
}

.stat-card .text-warning {
  --icon-bg-rgb: 255, 193, 7;
}

.stat-card .text-info {
  --icon-bg-rgb: 13, 202, 240;
}

.stat-card .text-success {
  --icon-bg-rgb: 25, 135, 84;
}

.stat-card .text-primary {
  --icon-bg-rgb: 13, 110, 253;
}
