.dashboard-container {
    background-color: #f8f9fa;
    min-height: 100vh;
    /* padding: 2rem 0; */
}

.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.2s;
}

.stat-card {
    border-left: 5px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

 .stat-card.high {
    border-left-color: #198754;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.stat-card.med {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
}

.stat-card.low {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #ffffff 0%, #fdecea 100%);
}

.stat-card.avg {
    border-left-color: #0d6efd;
    background: linear-gradient(135deg, #ffffff 0%, #e7f1ff 100%);
}

.table-container {
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.table thead th {
    background-color: #f1f4f8;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.badge-score {
    font-size: 0.9rem;
    padding: 0.5em 0.8em;
    border-radius: 8px;
}

.filter-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 10;
}

.search-input {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding-left: 40px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 11px;
    color: #adb5bd;
}

.cardComparsion {
    background-color: #dadce4;
    color: black;
}