/* Toasts / notificaciones Plenum */
#plenum-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    width: calc(100% - 40px);
    pointer-events: none;
}

.plenum-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 10px;
    background: #ffffff;
    color: #2b2b2b;
    font-family: 'Montserrat', 'Quicksand', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    border-left: 5px solid #005b9c;
    opacity: 0;
    transform: translateX(120%);
    transition: opacity 300ms ease, transform 300ms ease;
}

.plenum-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.plenum-toast .plenum-toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
}

.plenum-toast .plenum-toast-message {
    flex: 1;
    align-self: center;
}

.plenum-toast .plenum-toast-close {
    flex-shrink: 0;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #9a9a9a;
    padding: 0 2px;
}

.plenum-toast .plenum-toast-close:hover {
    color: #555;
}

/* Variantes */
.plenum-toast.success {
    border-left-color: #2e9e5b;
}
.plenum-toast.success .plenum-toast-icon {
    background: #2e9e5b;
}

.plenum-toast.error {
    border-left-color: #d64545;
}
.plenum-toast.error .plenum-toast-icon {
    background: #d64545;
}

.plenum-toast.info {
    border-left-color: #005b9c;
}
.plenum-toast.info .plenum-toast-icon {
    background: #005b9c;
}

@media screen and (max-width: 600px) {
    #plenum-toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
    }
}
