﻿
.notification {
    position: fixed;
    width: 95%;
    line-break: anywhere;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0000005c;
    color: white;
    padding: 15px;
    border-radius: 10px;
    z-index: 1051; /* background de las modales a 1500 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 20px;
    padding: 12px 16px;
    border-radius: 4px;
    min-width: 344px;
    max-width: 672px;
    display: none;
}

.notification-error {
    background-color: #fdecea;
    color: #b71c1c;
}

.notification-success {
    background-color: #e8f5e9;
    border-color: #e8f5e9;
    color: #1b5e20;
}

.notification-info {
    background-color: #fff9c4;
    color: #795548;
}

