html, body {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Evita scroll */
    margin: 0;
    padding: 0;
}


main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 10px 10px; /* Espacio superior para evitar que el botón se monte */
    box-sizing: border-box;
}

/* Contenedor del reporte */
#embed-container {
    width: 90%;
    height: 90%;
    max-width: 100%; /* Límite para pantallas grandes */
    max-height: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Botón de cierre de sesión */
.logout__submit {
    position: fixed;
    top: 5px;
    right: 10px;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    cursor: pointer;
    font-size: 14px;
    max-width: 10%; /* Límite para pantallas grandes */
    max-height: 50px;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    main {
        padding-top: 60px; /* Mayor espacio superior en móviles */
    }

    #embed-container {
        width: 95%;
        height: 80%;
        max-height: none;
    }

    .fixed-div {
        padding: 8px 15px;
        font-size: 12px;
    }
}
