/* Exact Sidebar Menu Styling */
.sidebar-menu {
    width: 200px;
    background-color: #e8eef8; /* Light blue box background */
    border: 1px solid #c5d3ea;
    margin-bottom: 10px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.sidebar-menu .menu-header {
    background-color: #e8eef8;
    color: #1a539a; /* Dark blue header text */
    font-weight: bold;
    padding: 6px 10px;
    font-size: 14px;
    border-bottom: 1px solid #d3e0f4;
}

.sidebar-menu a {
    display: block;
    padding: 6px 10px;
    color: #3b2c82; /* Purple link text */
    text-decoration: underline;
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px solid #d3e0f4;
    background-color: #e8eef8;
}

.sidebar-menu a:last-child {
    border-bottom: none;
}

.sidebar-menu a:hover {
    background-color: #d9e4f5;
}

/* Exact Date Filter Styling */
.filter-section {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.filter-section label {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}

.filter-section input[type="text"],
.filter-section input[type="date"] {
    width: 130px;
    height: 24px;
    padding: 2px 5px;
    border: 1px solid #000000;
    background-color: #ffffff;
    font-size: 13px;
    font-weight: normal;
    color: #000000;
}

.filter-section button {
    height: 24px;
    padding: 0 12px;
    background-color: #f0f0f0;
    border: 1px solid #7f7f7f;
    border-radius: 2px;
    cursor: pointer;
    font-size: 12px;
    color: #000000;
    box-shadow: inset 0px 1px 0px #ffffff;
}

.filter-section button:hover {
    background-color: #e0e0e0;
}