.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 300px;
    max-width: 100%;
}

.toast {
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateX(100%);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.5em;
}

.toast.success {
    background: rgba(78, 190, 103, 0.85);
}
.toast.error {
    background: rgba(197, 101, 110, 0.85);
}
.toast.info {
    background: rgba(93, 177, 190, 0.85);
}
.toast.warning {
    background: rgba(255, 215, 95, 0.85);
    color: #212529;
}
