html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

#div-icon-simclinica {
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-sim-clinica {
    padding: 1rem;
}

#div-text-position {
    display: flex;
    justify-content: center;
    align-items: center;
}

#div-img-loading {
    display: flex;
    justify-content: center;
    align-items: center;
}

#img-loading {
    height: 20rem;
    width: 20rem;
}

#img-error {
    width: 12rem;
    height: 12rem;
    padding-left: 1.5rem;
}

#img-loading-disconnect {
    height: 7rem;
    width: 7rem;
}

#text-position {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding-left: 1rem;
    font-size: 2rem;
}

footer {
    padding: 10px 0;
    text-align: center;
}

#logo-symplis {
    height: 2rem;
}

#div-sound {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
#text-div-sound {
    background-color: white;
    padding: 1.25rem; 
    border-radius: 0.5rem; 
    text-align: center;
    max-width: 18.75rem; 
}

#text-div-sound p {
    margin-bottom: 1.25rem; 
    font-size: 1.125rem;
}

#allow-sound-button {
    padding: 0.75rem 1.5rem; 
    font-size: 1.125rem;
    cursor: pointer;
    background-color: #4CAF50; 
    color: white;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

#allow-sound-button:hover {
    background-color: #45a049; 
}

#deny-sound-button {
    padding: 0.75rem 1.5rem; 
    font-size: 1.125rem;
    cursor: pointer;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

#deny-sound-button:hover {
    background-color: #e53935; 
}

.buttom-custom {
    background-color: #048273;
}

@media(max-width: 400px){
    #text-position {
        font-size: 1.5rem;
    }

    #img-loading-disconnect {
        height: 5rem;
        width: 5rem;
    }
}