/* State Switcher Dropdown in Sidebar */
.state-switcher {
    padding: 10px 15px;
    text-align: center;
}

.state-switcher select {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    appearance: none; /* Remove default dropdown arrow */
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); /* Custom dropdown arrow */
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    margin:0px;
}

.state-switcher select:hover {
    border-color: #999;
}

.state-switcher select:focus {
    border-color: #666;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Sidebar Styles */
.sidebar {
}

.sidebar.c-past {
    background-color: #4B5563; /* Gray for Past */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar.c-current {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar.c-future {
    background-color: rgb(85, 120, 97);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

/*
.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    pointer-events: none;
}
    */

/* Responsive Adjustments */
@media (max-width: 768px) {
    .state-switcher {
        padding: 8px 10px;
    }

    .state-switcher select {
        font-size: 12px;
        padding: 6px 10px;
        background-size: 14px;
    }
}