/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f8f9fa;
    color: #333;
}

/* Filters Section */
div {
    margin-bottom: 15px;
}

input,
select {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="checkbox"] {
    margin-left: 5px;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

th {
    background: #007bff;
    color: white;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
}

th:hover {
    background: #0056b3;
}

td {
    background: #fff;
}

tr:nth-child(even) td {
    background: #f2f2f2;
}

tr:hover td {
    background: #d9ecff;
}

/* Accordion Button */
button.accordion {
    background: none;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

button.accordion:after {
    content: " ▶";
    font-size: 14px;
}

button.accordion.active:after {
    content: " ▼";
}

/* Accordion Panel */
.panel {
    display: none;
    background: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease-in-out;
}

/* Links */
a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

#clearFilters {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-left: 10px;
}

#clearFilters:hover {
    background: #c82333;
}

#downloadSummary {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-left: 10px;
}

#downloadSummary:hover {
    background: #218838;
}
