.bus-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 32px;
}

.route-title {
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
}

.routes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.route-container {
    border: 1px solid black;
    border-radius: 8px;
    flex: 1 1 48%;
    padding: 8px;
}

.day-title {
    font-weight: bold;
    margin-bottom: 6px;
    text-align: center;
}

.time-grid {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    max-height: 300px;
    overflow-y: auto;
}

.time-cell {
    background-color: #3498db;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    padding: 6px;
    text-align: center;
}

.days-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.day-block {
    border: 1px solid #000;
    border-radius: 8px;
    flex: 1 1 45%;
    padding: 8px;
}

.legend {
    border: 1px solid black;
    border-radius: 8px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
    padding: 8px;
}

.legend-item {
    align-items: center;
    display: flex;
    font-size: 14px;
}

.legend-color {
    border-radius: 50%;
    display: inline-block;
    height: 14px;
    margin-right: 6px;
    width: 14px;
}
