body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
    background-image: url("../img/glvpattern.jpg");
    background-repeat: repeat;
    color: #000 !important;
}

table {
    margin: auto;
    table-layout: fixed;
    border-collapse: collapse;
    width: 90%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

th, td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 12px;
    border: 1px solid #aaa;
    color: black;
}

th {
    background-color: #ddd;
    position: sticky;
    top: 0;
    z-index: 1;
}

.controls {
    margin: 10px auto;
    text-align: center;
    padding: 8px;
}

.controls form {
    display: inline-block;
    margin-bottom: 5px;
}

.pagination {
    margin-top: 20px;
}

.pagination a {
    background-color: #555;
    padding: 6px 10px;
    margin: 0 3px;
    border: 1px solid #aaa;
    text-decoration: none;
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.pagination a:hover {
    background-color: #666;
}

.pagination a.active {
    background-color: white;
    color: black;
}

select, input[type="text"] {
    padding: 6px;
    margin-right: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}

button {
    padding: 6px 12px;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
    table {
        width: 100%;
        font-size: 14px;
    }
    
    .controls form {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    select, input[type="text"] {
        width: 100%;
        margin-right: 0;
    }
    
    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .pagination a {
        margin: 0;
    }
}

.grouping-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 10px;
    cursor: pointer;
}

.grouping-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.date-column {
    min-width: 200px;
    width: 200px;
}

.rate-limit-message {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rate-limit-message h2 {
    color: #d32f2f;
    margin-top: 0;
}

.rate-limit-message p {
    color: #666;
    margin-bottom: 0;
} 