.custom-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}
.custom-modal .modal-header {
    background-color: #252534; /* Rojo */
    color: white;
    border-bottom: none;
    text-align: center;
    font-size: 1.5rem;
}
.custom-modal .modal-body {
    padding: 20px;
    text-align: center;
}
.custom-modal .modal-footer {
    border-top: none;
    display: flex;
    justify-content: center;
}
.custom-modal .btn-custom {
    border: 2px solid #252534;
    color: #252534;
    border-radius: 20px;
    padding: 5px 20px;
    margin: 0 10px;
}
.custom-modal .btn-custom:hover {
    background-color: #252534;
    color: white;
}
.custom-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ffffff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    font-weight: bold;
}

.modal-body  p{
    color: #000000;
    text-align: center;
    font-size: 20px;
}

