/* Toaster Container */
#toaster-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

/* Individual Toast */
.nexus-toast {
    background: #ffffff;
    color: #333;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 450px;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 5px solid #1a387f;
    /* Branding blue */
}

.nexus-toast.show {
    transform: translateX(0);
}

.nexus-toast i {
    font-size: 1.5rem;
    color: #1a387f;
}

.nexus-toast-content {
    flex-grow: 1;
}

.nexus-toast-message {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.nexus-toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.nexus-toast-close:hover {
    color: #333;
}

/* Success State */
.nexus-toast.success {
    border-left-color: #28a745;
}

.nexus-toast.success i {
    color: #28a745;
}

/* Error State */
.nexus-toast.error {
    border-left-color: #dc3545;
}

.nexus-toast.error i {
    color: #dc3545;
}