/* Global Styles */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Professional Dropdown Styling */
.date-dropdown .Select-control {
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    background-color: white !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s ease !important;
    height: 42px !important;
    font-size: 14px !important;
}

.date-dropdown .Select-control:hover {
    border-color: #2563eb !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15) !important;
}

.date-dropdown .is-focused .Select-control {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

.date-dropdown .Select-value,
.date-dropdown .Select-placeholder {
    line-height: 38px !important;
    padding-left: 12px !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
}

.date-dropdown .Select-placeholder {
    color: #9ca3af !important;
}

.date-dropdown .Select-arrow {
    border-color: #6b7280 transparent transparent !important;
    border-width: 6px 5px 3px !important;
}

.date-dropdown .Select-menu-outer {
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    margin-top: 4px !important;
}

.date-dropdown .VirtualizedSelectOption {
    padding: 10px 12px !important;
    font-size: 14px !important;
    transition: background-color 0.15s ease !important;
}

.date-dropdown .VirtualizedSelectOption:hover {
    background-color: #eff6ff !important;
    color: #1e40af !important;
}

.date-dropdown .VirtualizedSelectFocusedOption {
    background-color: #dbeafe !important;
    color: #1e40af !important;
}

/* KPI Card Styling */
.kpi-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.kpi-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e8ed;
}

.kpi-card-title {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 500;
}

.kpi-card-value {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.kpi-card-subtitle {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
}
/* Footer Link Styling */
.footer-link {
    color: #156570;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #0d4b52;
    text-decoration: underline;
}
