/* =============== Toast Notification System =============== */

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

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

.toast-icon {
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 28px;
    text-align: center;
}

.toast-message {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
}

/* Toast Types */
.toast-success {
    border-left-color: #2ed573;
}

.toast-success .toast-icon {
    color: #2ed573;
}

.toast-error {
    border-left-color: #ff6b6b;
}

.toast-error .toast-icon {
    color: #ff6b6b;
}

.toast-warning {
    border-left-color: #ffa502;
}

.toast-warning .toast-icon {
    color: #ffa502;
}

.toast-info {
    border-left-color: #3742fa;
}

.toast-info .toast-icon {
    color: #3742fa;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}
