#host-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2rem;

    .host-search-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 50%;
        background-color: var(--card-bg-color);
        border-radius: 5px;

        form {
            display: flex;
            justify-content: center;
            width: 100%;

            .input_class {
                display: flex;
                width: 50%;
                flex-direction: row;
                justify-content: flex-end;

                input {
                    width: 100%;
                    padding: 1rem;
                }
                input:focus {
                    outline: none;
                }

                div {
                    flex: 1;
                    display: flex;
                    justify-content: center;
                    justify-items: center;
                    align-items: center;
                    color: var(--white);
                    padding: 0 0.5rem 0 0.5rem;
                    background-color: rgb(235, 81, 81);
                    cursor: pointer;
                    user-select: none;
                }
            }

            button {
                border: 0;
                background-color: var(--menu-bg-color);
                color: var(--gold2);
                padding: 0 1rem 0 1rem;
            }

            button:hover {
                background-color: var(--menu-item-hover-color);
                cursor: pointer;
            }
        }
    }
}

.upcoming-events
{
    p {
        padding: 0;
        margin: 0;
    }

    ul {
        padding: 0em;
        padding-top: 1em;
        padding-bottom: 1em;
        margin: 0;

        li {
            width: 100%;
            display: flex;
            flex-direction: row;

            a {
                padding: 0;
                margin: 0;
                flex: 1;
                text-decoration: none;
                color: black;
            }

            p {
                padding:0;
                margin: 0;
            }
        }

        li + li {
            margin-top: 0.5em;
        }
    }
}