/* styles.css */

/* Universal Styles */
body {
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

h1, h2, h3, h4, h5, h6 {
    color: #03065a;
}

a {
    text-decoration: none;
    color: #54a2d3;
}

a:hover {
    color: #03065a;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header h1 {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

/* Filters Section */
.filters-section {
    background-color: #03065a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
}

.filters-section label {
    font-weight: bold;
}

.filters-section .dropdown, .filters-section .date-picker {
    width: 100%;
    font-size: 12px;
    padding: 10px;
    border-radius: 5px;
    background-color: white;
    color: #03065a;
}

/* Buttons */
button {
    background-color: #03065a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #54a2d3;
}

/* Table Styles */
.data-table {
    border-radius: 10px;
    overflow: hidden;
}

.data-table thead {
    background-color: #03065a;
    color: white;
}

.data-table tbody tr:nth-child(odd) {
    background-color: #f8f8f8;
}

.data-table tbody tr:hover {
    background-color: rgba(84, 162, 211, 0.3);
}

.data-table td {
    padding: 10px;
    text-align: left;
    white-space: normal;
}

/* Export Message */
#export-status {
    margin-top: 10px;
    color: blue;
    text-align: right;
    margin-right: 10px;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .filters-section {
        display: block;
    }
    
    .header h1 {
        font-size: 2em;
    }
}
