.modal-content {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
    overflow: hidden;
}

/* Encabezado del modal */
.modal-header {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    border-bottom: none;
}

.modal-title {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}

/* Botón de cerrar */
.modal-header .close {
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.8;
}

.modal-header .close:hover {
    opacity: 1;
}

/* Cuerpo del modal */
.modal-body {
    padding: 20px;
    background-color: #f9f9f9;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    font-family: 'Arial', sans-serif;
}

/* Filas dentro del cuerpo */
.modal-body .row {
    margin-bottom: 10px;
}

/* Botón del pie de página */
.modal-footer .btn-secondary {
    background-color: #6c757d;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
}

.modal-footer .btn-secondary:hover {
    background-color: #5a6268;
}

.centrar-titulo {
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
    Margin: 0 auto;
}