/* Style the table */
.beautiful-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 14px;
    text-align: left;
    background-color: #f5f5f5;
}

.beautiful-table th, .beautiful-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: center;

}

.beautiful-table thead th {
    background-color: #0126f6;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.beautiful-table tbody tr {
    transition: all 0.3s ease;
}

.beautiful-table tbody tr:hover {
    background-color: #f1f1f1;
}

.beautiful-table tbody td {
    border-bottom: 1px solid #ddd;
}

.earnings-table-wrapper {
    margin-top: 20px;
}

/* No data styling */
.no-results {
    color: #ff6f61;
    font-style: italic;
    text-align: center;
}

.earnings-filter-wrapper {
    margin-bottom: 15px;
}

#filter-period {
    float: left;
    margin-right: 15px;
}