/* Custom Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa; /* Light background */
    color: #222222; /* Dark text for contrast */
}

.hero-section {
    background: transparent !important;
}

.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #2563eb; /* Blue */
    border: 1px solid #3b82f6;
    color: #ffffff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-dark .navbar-brand, .navbar-dark .nav-link {
    color: #ffffff;
}

/* Kullanıcı dropdown için özel stil */
.navbar .dropdown-toggle {
    max-width: 300px !important;
    overflow: visible;
    white-space: nowrap;
    font-size: 0.9rem;
}

/* Navbar container genişliği artır */
.navbar .container {
    max-width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Navbar menü öğeleri arasında boşluk azalt */
.navbar-nav .nav-item {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
}

.navbar-nav .nav-link {
    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;
    font-size: 0.9rem;
}

/* Mobil cihazlarda daha geniş alan */
@media (max-width: 768px) {
    .navbar .dropdown-toggle {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Navbar sağ kısmına daha fazla alan */
.navbar-nav:last-child {
    margin-left: auto;
}

/* Dropdown menüsü için stil */
.navbar .dropdown-menu {
    min-width: 250px;
}

.bg-dark {
    background-color: #1e40af !important; /* Blue for Navbar/Footer */
}

.btn {
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary {
    background-color: #3b82f6; /* Bright Blue */
    border-color: #3b82f6;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2563eb; /* Darker Blue */
    border-color: #2563eb;
}

.btn-light {
    background-color: #dbeafe;
    border-color: #dbeafe;
    color: #1e3a8a;
}

.btn-outline-light {
    border-color: #60a5fa;
    color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #60a5fa;
    border-color: #60a5fa;
    color: #ffffff;
}

.form-control, .form-select {
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    color: #495057;
}

.form-control::placeholder {
    color: #6c757d;
}

.form-control:focus, .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    background-color: #ffffff;
    color: #495057;
}

.input-group-text {
    background-color: #60a5fa;
    border-color: #60a5fa;
    color: #ffffff;
}

.card-header {
    background-color: #2563eb;
    border-bottom: 1px solid #3b82f6;
    font-weight: 600;
}

.table {
    color: #ffffff;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: rgba(255, 255, 255, 0.1);
}

.table th {
    background-color: #3b82f6;
    font-weight: 600;
    color: #ffffff;
    border-color: #60a5fa;
}

.table td {
    border-color: #60a5fa;
}

.table-hover tbody tr:hover {
    background-color: rgba(59, 130, 246, 0.2);
}

.badge {
    font-size: 0.8rem;
}

.text-muted {
    color: #bfdbfe !important;
}

.text-success {
    color: #22c55e !important;
}

/* Product card enhancements */
.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 580px !important; /* Kartları maksimum yüksek yap */
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 350px;      /* Kart yüksekliğini ayarla */
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.home-page .product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem !important; /* Daha fazla padding */
    min-height: 140px !important; /* Açıklama alanını genişlet */
}

/* TEK VE TUTARLI ÜRÜN RESMİ BOYUTLARI */
.product-card .card-img-top {
    transition: transform 0.3s ease;
    height: 380px !important; /* Maksimum büyüklük */
    object-fit: cover !important;
    width: 100% !important;
    object-position: center !important;
    border-radius: 16px !important; /* Köşeleri yuvarlat */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important; /* Hafif gölge */
    border: 3px solid #ffffff !important; /* Beyaz çerçeve */
}

.home-page .product-card .card-img-top {
    height: 380px !important; /* Ana sayfa için aynı boyut */
    object-fit: cover !important;
    width: 100% !important;
    object-position: center !important;
    border-radius: 16px !important; /* Köşeleri yuvarlat */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important; /* Hafif gölge */
    border: 3px solid #ffffff !important; /* Beyaz çerçeve */
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.home-page .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-page .product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem !important;
}

.home-page .product-card .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #222;
}

/* Ürün açıklamaları için mavi renk */
.card-text {
    color: #2563eb !important; /* Mavi renk */
    font-size: 0.9rem;
    flex: 1;
}

.home-page .product-card .card-text {
    color: #2563eb !important; /* Ana sayfa ürün açıklamaları mavi */
    font-size: 0.9rem;
    flex: 1;
}

#gridView .card-text {
    color: #2563eb !important; /* Grid görünümünde mavi */
    font-size: 0.98rem;
    margin-bottom: 1rem;
    min-height: 2.2em;
}

/* Liste görünümünde de mavi olsun */
#listView .table td {
    color: #2563eb !important;
}

/* Ürün detay sayfasında da mavi */
.product-description {
    color: #2563eb !important;
}

/* Animation for loading */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Footer styles */
footer {
    margin-top: auto;
    color: #dbeafe;
}

footer h5 {
    color: #ffffff;
}

/* Category cards on home page */
.category-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.category-card .card-body {
    text-align: center;
    padding: 2rem 1rem;
}

.category-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Search and filter enhancements */
.search-filter-card {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border: 1px solid #60a5fa;
}

/* View toggle buttons */
.view-toggle .btn {
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.view-toggle .btn.active {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

/* Product count badge */
.product-count {
    background-color: #3b82f6;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Admin panel enhancements */
.admin-form {
    background-color: #2563eb;
    border-radius: 12px;
    padding: 2rem;
}

/* Table enhancements */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

.table td {
    vertical-align: middle;
    border-color: #60a5fa;
}

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state i {
    color: #93c5fd;
    margin-bottom: 1rem;
}

/* Product image placeholder */
.product-image-placeholder {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfdbfe;
}

/* Smooth transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* List view (table) için modern düzen */
#listView .table {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}
#listView .table th,
#listView .table td {
    background: #fff !important;
    color: #222;
    vertical-align: middle;
    padding: 16px 12px;
    border: none;
}
#listView .table tr {
    border-bottom: 1px solid #f0f0f0;
}
#listView .table tr:last-child {
    border-bottom: none;
}
#listView .product-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 12px; /* Köşeleri daha yuvarlat */
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Hafif gölge */
    border: 2px solid #ffffff; /* Beyaz çerçeve */
}
#listView .fw-semibold {
    font-weight: 600;
}

/* Grid view için modern kart düzeni */
#gridView .product-item {
    flex: 1 1 300px;
    max-width: 320px;
    min-width: 260px;
    margin: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
#gridView .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
#gridView .product-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
#gridView .card-img-top.product-image {
    width: 100%;
    height: 350px !important; /* Grid görünümü için maksimum büyük */
    object-fit: cover !important;
    border-radius: 16px !important; /* Köşeleri yuvarlat */
    background: #f8f9fa !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important; /* Hafif gölge */
    border: 3px solid #ffffff !important; /* Beyaz çerçeve */
}
#gridView .card-body {
    padding: 20px 18px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
#gridView .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222;
    min-height: 2.2em;
}
#gridView .card-text {
    color: #444;
    font-size: 0.98rem;
    margin-bottom: 1rem;
    min-height: 2.2em;
}
#gridView .price-tag {
    font-size: 1.2rem;
    font-weight: 600;
}
#gridView .btn {
    font-size: 0.97rem;
}
#gridView .badge {
    font-size: 0.85rem;
}
#gridView .product-overlay {
    background: rgba(255,255,255,0.92);
    border-radius: 0 0 16px 16px;
}

/* Responsive düzen */
@media (max-width: 900px) {
    .product-card .card-img-top {
        height: 300px !important;
    }
    .home-page .product-card .card-img-top {
        height: 300px !important;
    }
    #gridView .card-img-top.product-image {
        height: 280px !important;
    }
    .product-card {
        min-height: 500px !important;
    }
    #gridView .product-item {
        max-width: 100%;
        min-width: 180px;
        margin: 8px;
    }
    #listView .table th, #listView .table td {
        padding: 10px 6px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .product-card .card-img-top {
        height: 250px !important;
    }
    .home-page .product-card .card-img-top {
        height: 250px !important;
    }
    #gridView .card-img-top.product-image {
        height: 230px !important;
    }
    .card-img-top {
        height: 250px !important; /* Mobilde çok büyük */
    }
    .product-card {
        min-height: 450px !important;
    }
    #gridView .product-item {
        min-width: 100%;
        margin: 4px 0;
    }
    #listView .table th, #listView .table td {
        padding: 6px 2px;
        font-size: 0.92rem;
    }
    #listView .product-thumb {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Hero arka planı tamamen bebek resmi */
.hero-bg {
    min-height: 720px;
    width: 100%;
    background: url('/static/uploads/bebek.jpeg') center center/cover no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border-radius: 16px;
    margin: 20px 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12); /* Çok daha şeffaf */
    border-radius: 16px;
    padding: 32px 24px;
    margin: 0;
    margin-right: 50px;
    color: #222;
    text-shadow: none;
    text-align: right;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-content h1, .hero-content p {
    color: #F5F5DC;
    text-shadow: 0 2px 16px rgba(245,245,220,0.6);
    text-align: right;
}
@media (max-width: 768px) {
  .hero-bg {
    min-height: 320px;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px 0;
  }
    .hero-content {
        background: rgba(255, 255, 255, 0.1) !important;
        box-shadow: none !important;
        border: none !important;
        padding: 16px 8px !important;
        margin: 0 !important;
        text-align: center !important;
    }
    .hero-content h1, .hero-content p {
        text-align: center;
        color: #F5F5DC !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.8) !important;
    }
    .hero-content .lead {
        color: #0066cc !important;
        text-shadow: none !important;
    }
}

/* Hero bebek çerçevesi */
.hero-frame-wrapper {
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-frame {
    background: #fff;
    border-radius: 48px;
    box-shadow: 0 0 0 16px #fff, 0 4px 32px 0 rgba(0,0,0,0.08);
    padding: 24px;
    display: inline-block;
}
.hero-baby-img {
    width: 600px;
    height: 800px;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 48px;
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-frame {
    width: 95vw !important;
    max-width: 370px !important;
    height: 95vw !important;
    max-height: 450px !important;
    padding: 10px !important;
    border-radius: 20px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .hero-frame-wrapper {
    min-height: auto !important;
    padding: 20px 10px !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
  }
}
@media (max-width: 768px) {
  .hero-baby-img {
    width: 180px !important;
    height: 240px !important;
    border-radius: 16px !important;
  }
}
@media (max-width: 480px) {
  .hero-bg {
    background-size: contain !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    min-height: unset !important;
    padding-bottom: 12px !important;
  }
  .hero-baby-img {
    width: 100vw !important;
    max-width: 220px !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: top center !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

/* Mobile için mavi metin rengi */
@media (max-width: 768px) {
  .hero-content .lead {
    color: #0066cc !important; /* Su mavisi */
    text-shadow: none !important;
  }
} 

.product-title, .product-features, .product-features li { color: #1a237e !important; }
.product-desc { color: #1a237e !important; }
.modal * { color: #1a237e !important; }
.modal .product-desc, .modal-desc, .modal .product-details-desc { color: #1a237e !important; }
.product-category { color: #1a237e !important; }

.product-image {
    width: 100%;
    height: 200px;         /* Kart yüksekliğine göre ayarla */
    object-fit: contain;   /* Resmi orantılı şekilde sığdırır */
    display: block;
    margin: 0 auto;
    background: #f3f3f3;   /* Arka plan rengi, istersen kaldır */
    border-radius: 16px;   /* Köşeleri daha yuvarlat */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Hafif gölge */
    border: 3px solid #ffffff; /* Beyaz çerçeve */
}

/* Kartın kendisi için de responsive ayar */
.product-card {
    height: 350px;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Büyük ekranlar için resmi ve kartı büyüt */
@media (min-width: 1200px) {
    .product-image {
        height: 250px;
    }
    .product-card {
        height: 400px;
    }
}

/* Mobil sepet görünümü için özel stiller */
@media (max-width: 767px) {
    .cart-mobile-card {
        border-radius: 12px;
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .cart-mobile-card .btn-danger {
        background-color: #dc3545;
        border-color: #dc3545;
        color: white;
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .cart-mobile-card .btn-danger:hover {
        background-color: #c82333;
        border-color: #bd2130;
        transform: scale(1.05);
    }
    
    .cart-mobile-card .btn-danger:active {
        transform: scale(0.95);
    }
    
    .cart-mobile-card .input-group {
        max-width: 140px;
    }
    
    .cart-mobile-card .input-group .form-control {
        text-align: center;
        font-weight: 600;
    }
    
    .cart-mobile-card .product-info {
        flex: 1;
        min-width: 0;
    }
    
    .cart-mobile-card .product-title {
        font-size: 1rem;
        font-weight: 600;
        color: #1e3a8a;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .cart-mobile-card .product-price {
        font-size: 0.875rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    
    .cart-mobile-card .total-price {
        font-size: 1.125rem;
        font-weight: 700;
        color: #198754;
    }
    
    .cart-mobile-card .product-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 12px; /* Köşeleri daha yuvarlat */
        border: 3px solid #ffffff; /* Beyaz çerçeve */
        box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Hafif gölge */
    }
    
    .cart-mobile-card .product-image-placeholder {
        width: 60px;
        height: 60px;
        background-color: #f8f9fa;
        border-radius: 12px; /* Köşeleri daha yuvarlat */
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid #ffffff; /* Beyaz çerçeve */
        box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Hafif gölge */
    }
}

/* Mobil sepet mesajları için özel stiller */
@media (max-width: 767px) {
    .cart-success-message {
        display: none;
        color: #22c55e !important;
        font-weight: bold;
        font-size: 0.875rem;
        margin-left: 10px;
        padding: 4px 8px;
        background-color: rgba(34, 197, 94, 0.1);
        border-radius: 4px;
        border: 1px solid #22c55e;
        white-space: nowrap;
        animation: fadeInOut 2s ease-in-out;
    }
    
    .cart-success-message.show {
        display: inline-block !important;
    }
    
    @keyframes fadeInOut {
        0% { opacity: 0; transform: translateY(-10px); }
        20% { opacity: 1; transform: translateY(0); }
        80% { opacity: 1; transform: translateY(0); }
        100% { opacity: 0; transform: translateY(-10px); }
    }
    
    /* Mobilde ürün kartları için daha iyi düzen */
    .product-item .d-flex {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .product-item .btn {
        min-width: 100px;
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .product-item .cart-success-message {
        width: 100%;
        text-align: center;
        margin: 10px 0 0 0;
        padding: 8px;
        font-size: 0.875rem;
    }
}

/* Mobil sepet sayısı için özel stiller */
@media (max-width: 991px) {
    .cart-badge-mobile {
        position: absolute;
        top: -8px;
        right: -8px;
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: bold;
        border: 2px solid white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        animation: pulse 2s infinite;
    }
    
    .cart-badge-mobile.show {
        display: flex !important;
    }
    
    /* Desktop sepet sayısı için de aynı kuralları uygula */
    .cart-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: bold;
        border: 2px solid white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        animation: pulse 2s infinite;
    }
    
    .cart-badge.show {
        display: flex !important;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    /* Hamburger menü butonunu daha belirgin yap */
    .navbar-toggler {
        border: 2px solid rgba(255,255,255,0.8);
        padding: 8px 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover {
        border-color: white;
        background-color: rgba(255,255,255,0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
    }
}

/* Profil sayfası için özel stiller */
.profile-page .card {
    background-color: #ffffff;
    color: #495057;
    border: 1px solid #dee2e6;
}

.profile-page .card-header {
    background-color: #3b82f6;
    color: #ffffff;
    border-bottom: 1px solid #3b82f6;
}

.profile-page .form-control,
.profile-page .form-select {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    color: #495057;
}

.profile-page .form-control:focus,
.profile-page .form-select:focus {
    background-color: #ffffff;
    color: #495057;
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.profile-page .form-control::placeholder {
    color: #6c757d;
}

.profile-page .btn {
    border-radius: 8px;
    font-weight: 500;
}

.profile-page .btn-success {
    background-color: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.profile-page .btn-warning {
    background-color: #f59e0b;
    border-color: #f59e0b;
    color: #ffffff;
}

.profile-page .btn-danger {
    background-color: #ef4444;
    border-color: #ef4444;
    color: #ffffff;
}

.profile-page .alert {
    border-radius: 8px;
    border: none;
}

.profile-page .alert-success {
    background-color: #d1fae5;
    color: #065f46;
}

.profile-page .alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.profile-page .alert-info {
    background-color: #dbeafe;
    color: #1e40af;
}
