/* Estilo básico do modal */
.modal {
    display: none;
    /* Escondido por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 300px;
    position: relative;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: not-allowed;
    /* Indica que não pode clicar ainda */
    pointer-events: none;
    /* Impede o clique */
}

.close:hover,
.close:focus {
    color: #000;
}

/* Quando o botão estiver habilitado */
.close.enabled {
    cursor: pointer;
    color: #000;
}