/* Apply Heebo-Regular font to all elements */
* {
    font-family: 'Heebo-Regular', sans-serif;
    box-sizing: border-box; /* Ensure consistent box-sizing across elements */
}

.header {
    display: flex;
    justify-content: space-evenly;
    width: 800px;
    margin: auto;
    align-items: center;
    padding-bottom: 10px;
}

/* Existing styles with the font applied */
.line-info {
    flex-grow: 1;
    text-align: right;
    font-size: 20px;
    display: flex;
    direction: rtl;
    align-items: center;
}

.line-sign {
    font-size: 30px;
    color: #000;
    padding: 8px 20px 12px 20px;
    border-radius: 16px;
    border: 2px solid #000;
    font-weight: 600;
}

.line-destination {
    padding-right: 20px;
}

.schedule-table, .list-of-stations {
    margin: auto;
    width: 800px;
}

.days-of-week-wrapper, .stations-table {
    display: flex;
    justify-content: space-around;
    border: 1px solid #000;
}

.days-of-week {
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid #000;
    width: 100%;
}

h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
.list-of-stations {
    text-align: right;
}

.schedule-note{
    padding-top: 20px;
    direction: rtl;
    padding-bottom: 50px;
    font-size: 16px;
}

.station-row {
    padding: 4px 12px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    direction: rtl;
    border: 1px solid #000;
}

.station-item {
    flex: 1;
    margin-right: 10px;
}

.station-item:last-child {
    margin-right: 0;
}

.stations-table {
    display: flex;
    flex-direction: column;
}

.station-order {
    width: 60px;
}

.station-mot-code {
    width: 100px;
}

.station-name {
    flex-grow: 1;
}

.days-wrapper {
    display: flex;
    text-align: center;
    border: 1px solid #000;
}

.schedule-times {
    border: 1px solid #000;
    width: 100%;
}

.wrapper {
    text-align: right;
    padding-right: 39px;
}

.days-of-week-wrapper {
    display: flex;
    flex-direction: row;
    direction: rtl;
    overflow-x: auto;
}

.days-wrapper {
    display: flex;
    flex-direction: row;
    direction: rtl;
}

.days-of-week {
    //padding: 10px;
    border: 1px solid #000;
}