.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex!important;
    justify-content: center;
    align-items: center;
    z-index: 999999999999;
}

.confirmation-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
    opacity: 0;
    animation: slideDown 0.5s forwards ease-out;
}

.confirmation-content h3 {
    margin-bottom: 20px;
}

.confirmation-buttons {
    display: flex;
    justify-content: space-around;
}

.confirmation-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-confirm {
    background-color: #28a745;
    color: white;
}

.btn-cancel {
    background-color: #dc3545;
    color: white;
}

.btn-confirm:hover {
    background-color: #218838;
}

.btn-cancel:hover {
    background-color: #c82333;
}

/* Animación de entrada */
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}