       body {
           font-family: Arial, sans-serif;
       }

       .color-primary {
           color: #E30613;
       }

       /* Rojo e-viral */
       .bg-primary {
           background-color: #E30613;
       }

       .color-secondary {
           color: #5D6341;
       }

       /* Verde oliva e-viral */
       .bg-secondary {
           background-color: #5D6341;
       }

       .text-dark {
           color: #4A4A49;
       }

       /* Gris oscuro logo */

.custom-dialog {
    border: none;
    border-radius: 16px;
    padding: 0;
    width: 360px;
    max-width: 90%;
    overflow: hidden;
    animation: fadeIn 0.25s ease-out;
}

.custom-dialog::backdrop {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
}

.dialog-content {
    padding: 30px 25px;
    text-align: center;
}

.icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.success-style .icon {
    color: #16a34a;
}

.error-style .icon {
    color: #dc2626;
}

.success-style {
    border-top: 6px solid #16a34a;
}

.error-style {
    border-top: 6px solid #dc2626;
}

h3 {
    margin-bottom: 10px;
}

p {
    color: #555;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}