body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*background-color: #F9F9ED;*/
    background-color: #f5f5f5;
    color: black;
}

.navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.navbar-logo {
    width: 20%;
}

.navbar-logo img {
    max-width: 45%;
    height: auto;
}

.navbar-title {
    width: 60%;
    text-align: center;
    font-size: 5vh;
    font-weight: bold;
    color: white;
}

.navbar-admin {
    width: 20%;
    text-align: center;
}

.navbar-admin button {
    background: none;
    border: none;
    align-content: center;
    font-size: 20px;
}

@media (max-width: 768px) {
    .navbar-custom {
        flex-direction: row;
        text-align: center;
    }

    .navbar-title {
        width: 60%;
        order: 2;
    }

    .navbar-logo {
        width: 20%;
        order: 1;
    }

    .navbar-admin {
        width: 20%;
        text-align: right;
        order: 3;
    }


}
    /*MODAL AVISOS*/
    .modal-aviso {
        display: none;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        justify-content: center;
        align-items: center;
        padding: 10px;
    }
    .modal-aviso-content {
        background: white;
        border-radius: 8px;
        padding: 5px;
        max-width: 80vw;
        max-height: 90vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .modal-aviso-content img {
        max-height: 88vh;
        width: 100%;
        border-radius: 4px;
    }
    .close {
        position: absolute;
        top: 20px; right: 30px;
        color: white;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }