/* styles.css */

/* Navbar styles - important for consistent branding */
.navbar {
    background-color: #bcfffc !important; /* e5e8ee Ensures this color is applied no matter what */
    color: #000 !important; /* Overrides other color styles */
}

/* Sidebar styles */
.sidebar {
    background-color: #bcfffc !important; /* Critical to match branding for sidebar */
    color: #333; /* Not critical, no need for !important */
}

/* Card styles */
.card {
    --bs-card-bg: #b0f4db1f; /* Custom property, not using !important */
    background-color: #bcfffc !important;  /*  ebebf054 Ensures this takes precedence */
    border: 1px solid #999696;
}

/* Card1 styles */
.card1 {
    background-color: #bcfffc !important; /* Critical for specific card design */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.scrolling-container {
    background-color: #bcfffc!important;
}
