/* =========================================================
   MENSAJES FLASH / TOAST NOTIFICATIONS
   ========================================================= */
.toast-container-gp {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 380px;
    width: 100%;
}

.alert-gp {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-left: 4px solid var(--primary);
    animation: slideInRight 0.3s ease-out;
}

.alert-gp.alert-success {
    border-left-color: var(--status-done);
}

.alert-gp.alert-error {
    border-left-color: var(--status-danger);
}

.alert-gp.alert-warning {
    border-left-color: var(--accent);
}

.alert-gp-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.alert-gp-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
