body {
    margin: 0px 0px 20px 0px;
    background-color: #EEEEEE;
}

.zg-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.zg-nav-container-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 70px;
}

.zg-nav-container-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 70px;
}

.zg-nav-item-mobile {
    background-color: #0A61C9;
    color: white;
    padding: 5px;
    cursor: pointer;
}

.zg-nav-separator {
    background-color: #749DC8;
    height: 20px;
}

.zg-nav-item {
    height: 50px;
    color: white;
    margin-right: 20px;
    padding: 10px;
}

.zg-nav-item-logo {
    margin-right: 20px;
    cursor: pointer;
}

.zg-logo-img {
    height: 30px;
    width: 80px;
    border-radius: 20px;
}

.zg-nav-item-right {
    display: none;
    height: 50px;
    color: white;
    margin-right: 0;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.zg-nav-item:hover {
    cursor: pointer;
    color: #0A61C9;
    background-color: white;
}

.zg-nav-mobile-toggle {
    display: none;
}

.zg-nav-item-mobile {
    background-color: #0A61C9;
    color: white;
}

.zg-nav-item-mobile:hover {
    background-color: white;
    color: #0A61C9;
}


.zg-content-container {
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
}

.zg-footer {
    margin-top: 20px;
    padding: 5px 0 5px 0;
    background-color: white;
    border-radius: 20px;
    text-align: center;
}

.eve-container {
    background-color: #EEEEEE;
    margin: 20px 0 0 0;
    padding: 20px;
    border-radius: 20px;
    border: solid 3px lightgray;
}

.eve-container a {
    font-size: 1.1rem;
    text-decoration: underline;
}

.eve-container a:hover {
    font-size: 1.1rem;
    text-decoration: none;
}

/* Example: on screens that are 768px or less, set the background color to #EEEEEE */
@media screen and (max-width: 768px) {
    body {
        background-color: #EEEEEE;
    }
}

@media screen and (max-width: 768px) {
    .zg-nav-item-right {
        display: block;
    }

    .zg-nav-item-toggle {
        display: none;
    }
}