/* New CSS for the user list */
.user-table-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.user-table th, .user-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

.position, .driver-rating {
    text-align: center !important; /* Add !important to override any conflicting styles */
}

.user-table th {
    background-color: #f1f1f1;
}

.user-table tr:hover {
    background-color: #f9f9f9;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination a {
    padding: 10px 20px;
    margin: 0 5px;
    text-decoration: none;
    background-color: #0d6efd;
    color: #ffffff;
    width: 100px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center; /* Align text in the center */
    display: inline-block; /* Ensure proper center alignment */
}

.pagination a:hover {
    background-color: #0b5ed7;
}

.pagination span {
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #f1f1f1;
}

@media screen and (max-width: 992px) {
    .user-table th, .user-table td {
        padding: 8px;
    }
}

@media screen and (max-width: 576px) {
    .user-table th, .user-table td {
        padding: 6px;
    }
}
.submittable {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

/* Table Header */
.th-sb {
    background-color: #0074D9;
    color: white;
    padding: 12px;
    font-weight: bold;
    min-width:225px;
}

/* Table Rows */
.td-sb {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    min-width:225px;
}

/* Alternating Row Colors */
.tr-sb:nth-child(even) {
    background-color: #f2f2f2;
}

/* Input Fields */
.input-sb[type="number"], input[type="text"], input[type="email"]  {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

