.container {
    width: 100%;
}

.section1 {
    display: flex;
    overflow-x: scroll;
}

.bar1 {
    width: calc(20% - 5px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 0;
    background-color: #2C3E50;
    margin-right: 5px;
    border-radius: 0;
    color: white;
    font-family: Robeto Condensed, sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 1px;
}

.no_events {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 0;
    background-color: #2C3E50;
    border-radius: 0;
    color: white;
    font-family: Robeto Condensed, sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 1px;
}

.blink_container {
    width: 100%;
    animation: blink 1.1s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.eventText {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 8px;
    max-width: 100%;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.bar1:hover {
    cursor: pointer;
}

@media (max-width: 600px) {
    .section1 {
        overflow-x: scroll;
        position: relative;
        margin-left: 5px;
        /* Removed negative top margin as it's now in header */
    }
}

/* Mobile and Tablet View */
@media (max-width: 768px) {
    .bar1 {
        width: calc(50% - 3px);
        flex-shrink: 0;
    }
}