.hazel-dashboard {
    background: #f8f9fa;
    padding: 20px;
    margin: 20px 20px 0 0;
    border-radius: 8px;
}

.dashboard-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-header h1 {
    color: #2c3338;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Date selector styling */
.date-selector-label {
    color: #50575e;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 0;
}

.date-range-selector {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.date-range-selector .form-control {
    width: 160px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.stat-card h3 {
    font-size: 16px;
    color: #50575e;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.stat-card .number {
    font-size: 36px;
    font-weight: 600;
    color: #2c3338;
    margin-bottom: 10px;
}

.stat-card i {
    font-size: 24px;
    margin-bottom: 15px;
    color: #b19044;
}

.stat-card p {
    font-size: 13px;
    margin: 0;
}

.update-card {
    border-left: 4px solid #b19044;
}

.enhance-card {
    border-left: 4px solid #2271b1;
}

.stale-card {
    border-left: 4px solid #dc3545;
}

.stale-card i {
    color: #dc3545;
}



.dashboard-logo svg {
    width: 100%;
    height: 100%;
}

/* Calendar icon alignment */
.calendar-icon .input-group-text {
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-right: none;
    font-size: 26px;  /* Increased from default to match textbox height */
    padding: 0 10px;  /* Adjusted padding for better alignment */
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

.input-group .form-control:focus + .input-group-text {
    border-color: #dee2e6;
}

@media (max-width: 782px) {
    .hazel-dashboard {
        margin: 10px;
    }
    
    .date-range-selector .d-flex {
        flex-direction: column;
    }
    
    .date-range-selector .form-control {
        margin: 10px 0;
    }
    
    .stat-card {
        padding: 20px;
    }
}
