.roster-container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.roster-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.roster-table th,
.roster-table td {
    padding: 10px;
    border: 2px solid #ddd;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

.roster-table th {
    background-color: #f2f2f2;
}

.roster-table td {
    background-color: #ffffff;
    border-radius: 0px;/* previously 5px */
    /*box-shadow: inset 0 0 1px rgba(2, 0, 103, 0.3);*/
    cursor: pointer;
}

.roster-table td:hover {
    /*background-color: #f0f0f0;*/
    /*transform: translateY(-2px);*/
    box-shadow: inset 0 0 5px rgba(7, 0, 81, 0.5);
}

.notice {
    border: 2px solid DodgerBlue;
    color: #FF0000;
    font-size: 1.8em;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    background-color: #fff;
}
