﻿
/* Caja principal */
.modalad-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modalad-header {
    font-size: 1.6em;
    font-weight: bold;
    color: #e65100;
    margin-bottom: 10px;
}

.modalad-icon {
    font-size: 3em;
    color: #ff6f00;
    margin-bottom: 15px;
}

.modalad-body {
    font-size: 1em;
    color: #444;
    line-height: 1.6;
}

.modalad-footer {
    margin-top: 25px;
}

.btnad-confirmar {
    padding: 10px 20px;
    background-color: #ff9800;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btnad-confirmar:hover {
        background-color: #f57c00;
    }
