/* --- TOAST NOTIFICATIONS --- */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 14px;
    font-weight: 500;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast i {
    font-size: 20px;
}

.toast-msg {
    flex: 1;
    line-height: 1.4;
}

/* Tipler */
.toast.success { border-left: 4px solid #2ed573; }
.toast.success i { color: #2ed573; }

.toast.error { border-left: 4px solid #ff4757; }
.toast.error i { color: #ff4757; }

.toast.warning { border-left: 4px solid #ffa502; }
.toast.warning i { color: #ffa502; }

.toast.info { border-left: 4px solid #1e90ff; }
.toast.info i { color: #1e90ff; }

/* Responsive */
@media (max-width: 480px) {
    #toast-container {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .toast {
        min-width: unset;
        width: 100%;
    }
}
