.gdrive-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gdrive-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.gdrive-modal-content iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Botão agora fora da .gdrive-modal-content */
.gdrive-close {
    position: fixed;
    top: 30px;
    right: 40px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
