.time_table {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.time_table h2 {
    text-align: center;
    color: #333;
}
.time_table p {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1px !important;
    margin-top: 1px !important;
    color: #333;

}
.time_table table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.time_table thead {
    background-color: #4CAF50;
    color: white;
}
.time_table th, .time_table td {
    width: 150px;
    height: 50px;
    padding: 12px 15px;
    text-align: center;
    vertical-align: middle;
}
.time_table th {
    font-size: 1rem;
    text-transform: uppercase;
}
.time_table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
.time_table td {
    font-size: 1rem;
    color: #555;
}
.time_table td > br {
    margin-bottom: 5px;
}
.time_table .split-cell {
    display: flex;
    justify-content: space-around;
}
.time_table .split-cell > div {
    width: 48%;
    padding: 10px;
    background-color: #e0f7fa;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}
