/* Estilização do fundo do modal */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999; /* Mantém o modal acima do conteúdo */
}

/* Estilização da caixa do modal */
.modal-content {
    background: #222;
    color: #fff;
    padding: 20px;
    margin-bottom: 100px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal-content p {
    margin: 10px 0; /* Reduz espaçamento entre parágrafos */
    line-height: 1.3; /* Ajusta espaçamento entre linhas */
    word-spacing: -1px; /* Reduz o espaçamento entre palavras */
    font-size: 18px; /* Diminui um pouco o tamanho da fonte */
}

/* Botões */
.modal-buttons {
    margin-top: 15px;
}

.btn-cadastrar, .btn-fechar {
    padding: 1px 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-cadastrar {
    background-color: #435ebe;
    color: white;
}

.btn-fechar {
    background-color: #dc3545;
    color: white;
}

/* Efeito hover nos botões */
.btn-cadastrar:hover {
    background-color: #203261;
}

.btn-fechar:hover {
    background-color: #791f27;
}