﻿body {
    margin: 0;
}

.font {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.font-red {
    color: #ba0c2f;
}

.event-schedule-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
}

.header {
    display: flex;
    align-items: center;
    padding-left: .5rem;
    width: 100%;
    min-height: 5rem;
    color: white;
    background-color: #1a283a;
    font-size: 1.7rem;
    font-weight: 400;
}

.event-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border: solid;
    border-width: 1px;
    border-color: #e8e6e6;
    width: 100%;
    background-color: white;
}

.series-logo-container {
    display: flex;
    justify-content: center;
    height: 4rem;
    min-width: 8rem;
    max-width: 8rem;
    align-self: center;
}

.series-logo {
    max-width: 100%;
    max-height: fit-content;
}

.event-details {
    display: flex;
    flex-direction: column;
    padding: 1.4rem;
    font-size: medium;
    line-height: 1.4rem;
}

.event-name {
    font-weight: bold;
}

.filtered-events-no-results {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #ba0c2f;
    background-color: white;
    font-size: x-large;
    max-height: 4rem;
}

@media screen and (min-width: 500px) {
    .event-date-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 1.4rem;
        padding: .5rem 0;
        min-width: 4rem;
        height: 4.8rem;
        border-radius: 4px;
        color: white;
        background-color: #1a283a;
        font-size: medium;
        line-height: 1.3rem;
    }

    .event-date-day {
        font-size: larger;
        font-weight: bold;
    }
}

@media screen and (min-width: 400px) and (max-width: 500px) {
    .event-date-container {
        display: none;
    }

    .series-logo-container {
        padding-left: 1.5rem;
    }
}

@media screen and (max-width: 400px) {
    .event-date-container {
        display: none;
    }

    .series-logo-container {
        padding-left: 1rem;
    }

    .event-details {
        padding: 1.4rem .5rem;
    }
}