.modal-lg {
    max-width: 800px;
}

.modal-header {
    background-color: #3f1e1b;
    color: white;
    border-bottom: none;
    padding: 20px 30px;
    text-align: center;
}

.modal-body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #333;
    background-color: #f9f9f9;
    padding: 30px;
    line-height: 1.8;
    text-align: center;
}

.modal-footer {
    border-top: none;
    background-color: #f9f9f9;
    padding: 20px 30px;
}

.modal-content {
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);

    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
}

button.btn-secondary {
    font-size: 16px;
    padding: 10px 20px;
    background-color: #486c70;
    border: none;
    color: white;
    border-radius: 4px;
}

button.btn-secondary:hover {
    background-color: #4f9ea7;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transform: translateY(-50px);
    opacity: 0;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

.modal.fade-out {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.modal.fade-out.show {
    opacity: 0;
}
