#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.toast-container-right {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-100%);
    animation: slideIn 0.3s ease forwards;
    min-width: 320px;
    max-width: 480px;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.toast-success {
    background: rgba(52, 199, 89, 0.95);
    color: white;
}

.toast-success::before {
    content: "\f00c";
}

.toast-error {
    background: rgba(48, 48, 48, 0.95);
    color: white;
    animation: none;
    transform: translateX(0);
    opacity: 1;
}

.toast-error::before {
    content: "\f06a";
}

.toast-warning {
    background: rgba(255, 149, 0, 0.95);
    color: white;
}

.toast-warning::before {
    content: "\f071";
}

.toast-info {
    background: rgba(255, 193, 7, 0.95);
    color: #1a1a1a;
}

.toast-info::before {
    content: "\f129";
}

.toast.hide {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
} 