.eager-timetable {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ececec;
    width: 100%;
    padding: 30px 0;

    .title-wrapper {
        text-align: center;
    }

    .timetable-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-top: 15px;
        width: 150px;

        .day {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            width: 100%;
        }

        .weekday {
            background-color: white;
            padding: 8px 0;
            width: 100%;
            text-align: center;
        }
    }

    &.sant-joan {
        margin-bottom: 50px;
    }
}