.searchInput {
    margin: 10px;
    padding: 8px;
    width: 50%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.table-container {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container table th {
    font-size: 14px;
    border-bottom: 3px solid #a51945;
    color: #a51945;
}

.table-container table td {
    font-size: 14px;
}

.table-container table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0;
}

.pagination button {
    padding: 8.5px 15px;
    margin: 0 5px;
    border: none;
    background-color: #a51945;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    letter-spacing:1px;
}

.pagination button:disabled {
    background-color: #cccccc;
}

.pagination span {
    margin: 0 10px;
}
