﻿.date-range-picker-container {
    /* basic box & text styles */
    background-color: #f9f9f9;
    border: 0.0625rem solid #333333 !important; /* Subtle dark border */
    border-radius: 0.25rem;
    font-size: 1rem;
    color: #999 !important;
    padding: 0.5rem 2rem 0.5rem 2.6rem; /* extra right padding for icon */
    /* background icon alignment */
    background: url('/Images/calendar-icon.svg') no-repeat left 0.75rem center;
    background-size: 1.3rem 1.3rem;
    width: 15rem;
    height: 100%;
    box-sizing: border-box; /* ensures padding doesn’t break width */
    transition: transform 0.15s ease, border-color 0.15s ease;
}

    .date-range-picker-container:hover {
        border-color: #444444 !important;
    }

    .date-range-picker-container:focus {
        outline: none;
        border-color: #007acc;
    }

.filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* allows items to wrap to the next line */
    gap: 0.7rem;
}

.dashboard-chart-layout {
    display: flex;
    flex-direction: row;
    gap: 1rem; /* space between stats panel and chart */
    margin-bottom: 1rem; /* some spacing from other elements */
}

/* The value for the stat */
.stats-value {
    font-weight: normal;
    color: #b3b3b3; /* slight contrast for the value text */
}

.page-title{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

/* On screens 600px wide or less, stack items vertically */
@media (max-width: 600px) {
    .filters {
        flex-direction: column;
    }
}