@charset "utf-8";
/* CSS Document */

/* Estilo do fundo escurecido */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Container da caixa do modal */
.modal-dialog {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Conteúdo do modal */
.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cabeçalho */
.modal-header {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;
    padding: 15px 20px;
}

.modal-title {
    text-align: center;
    width: 100%;
}

.modal-title img {
    display: block;
    margin: 0 auto;
}

/* Botão de fechar (X) */
.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Corpo do modal */
.modal-body {
    padding: 20px;
    text-align: center;
}

/* Rodapé */
.modal-footer {
    padding: 15px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* Botão fechar */
.btn-close {
    background-color: #6c757d;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-close:hover {
    background-color: #5a6268;
}