/* Container for both tables */
.shift-tables-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* Wrapper for each table */
.shift-display-wrapper {
    flex: 1;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Table styling */
.shift-display-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.shift-display-wrapper th,
.shift-display-wrapper td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

/* Header styling */
.shift-display-wrapper th {
    background-color: #f2f2f2;
    color: #000; /* Black font color for headers */
    font-weight: bold; /* Optional: Makes headers bold */
}

.shift-display-wrapper tr:nth-child(even) {
    background-color: #f9f9f9;
}

.shift-display-wrapper tr:hover {
    background-color: #f1f1f1;
}

/* Header text styling */
.shift-display-wrapper h2 {
    margin-top: 0;
    color: #333;
}