/* Premium Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s;
    opacity: 0;
    border-left: 6px solid #1b9da2;
}

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

.toast.error { border-left-color: #ff4444; }
.toast.success { border-left-color: #25b91e; }
.toast.warning { border-left-color: #ffc208; }

.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-content {
    flex-grow: 1;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.toast-close {
    font-size: 18px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.toast-close:hover { color: #888; }

@media (max-width: 480px) {
    #toast-container {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: 10px;
    }
    .toast {
        min-width: auto;
        width: 100%;
        transform: translateY(120%);
    }
    .toast.show {
        transform: translateY(0);
    }
}
