
#savia-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

#savia-modal {
    background: #ffffff;
    padding: 30px 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    max-width: 440px;
    text-align: center;
    font-family: "Helvetica Neue", sans-serif;
    animation: scaleIn 0.3s ease-in-out;
}

#savia-modal h2 {
    margin-top: 0;
    font-size: 22px;
    color: #b33a3a;
}

#savia-modal p {
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0 20px;
    color: #333;
}

#savia-modal button {
    margin: 5px 10px;
    padding: 10px 22px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

#savia-eliminar-frescos {
    color: #c0392b;
    border: 2px solid #c0392b !important;
}
#savia-eliminar-frescos:hover {
    background-color: #fceaea;
}

#savia-cambiar-fecha {
    color: #27ae60;
    border: 2px solid #27ae60 !important;
}
#savia-cambiar-fecha:hover {
    background-color: #e9f9ee;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
