/* Reset margin and padding for the body to ensure consistent spacing */
body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Styling the table */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden; /* Ensures the rounded corners are applied to the table rows as well */
}

th, td {
    text-align: left;
    padding: 12px 15px;
}

th {
    background-color: #007BFF; /* A vibrant blue for the header */
    color: white;
    font-weight: normal;
}

tr:nth-child(even) {
    background-color: #F0F0F0; /* A light gray for even rows */
}

tr:nth-child(odd) {
    background-color: #FFFFFF; /* White for odd rows */
}

tr:hover {
    background-color: #EFEFEF; /* A slightly darker gray for hover */
}

/* Styling pagination buttons */
#pagination {
    text-align: center;
    padding: 20px 0;
}

#pagination button {
    background-color: #007BFF; /* Matching the header color */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#pagination button:hover {
    background-color: #0056b3; /* A darker shade of blue for hover */
}

#pagination button.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}
