/* Quick Fix for Date Range Styles */

.quick-range-button::after {
    display: none !important;
}

.date-display-badge {
    background: linear-gradient(135deg, #2196f3, #1976d2) !important;
    box-shadow: 0 3px 8px rgba(33, 150, 243, 0.3) !important;
    transition: all 0.3s ease !important;
}

.date-display-badge:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 12px rgba(33, 150, 243, 0.4) !important;
}

button.quick-range-button {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

button.quick-range-button::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #1976d2 !important;
    opacity: 0 !important;
    z-index: -1 !important;
    transition: opacity 0.3s ease !important;
}

button.quick-range-button:hover::before {
    opacity: 1 !important;
}