/* Estilos para mensajes de éxito */
.success-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ecfdf5;
    color: #065f46;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
    font-weight: bold;
}

.success-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #10b981;
}

.error-toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffe2e2;
    color: #82181a;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
    font-weight: bold;
}

.error-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #82181a;
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

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

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

/* Estilos para mensajes de error */
.error-message {
    color: #82181a;
    font-size: 14px;
    margin-top: 5px;
}
