/* Custom styles for Inter font - Adicionado no PHP, mas pode ser aqui se preferir */
body {
    font-family: 'Inter', sans-serif;
}

/* Estilos básicos para o overlay do modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Acima do banner de cookies */
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem; /* rounded-lg do Tailwind */
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
}

/* Classe para ocultar elementos */
.hidden {
    display: none;
}
