/*
======================================================
CAMINHO: static/css/
ARQUIVO: modal.css

DESCRIÇÃO:
Estilos exclusivos dos modais globais (JWKModal e Relatórios).

RESPONSABILIDADES:
- Backdrop
- Caixa modal
- Camada visual
- Z-index

IMPACTO:
- Apenas modais
======================================================
*/

/* ===========================
   BACKDROPS
=========================== */
#jw-modal-backdrop,
#relatorios-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* ===========================
   CAIXAS MODAIS
=========================== */
#jw-modal,
#relatorios-modal {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===========================
   TÍTULOS
=========================== */
#jw-modal h3,
#relatorios-modal h3 {
    margin-top: 0;
    font-size: 18px;
}

/* ===========================
   AÇÕES
=========================== */
#jw-modal-actions {
    margin-top: 16px;
    display: flex;
}

#jw-modal-actions button {
    width: 100%;
}
