.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(30, 34, 55, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.toast-success {
    border-color: #28a745;
}

.toast-success .bi-check-circle {
    color: #28a745;
}

.toast-error {
    border-color: #dc3545;
}

.toast-error .bi-exclamation-circle {
    color: #dc3545;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.toast-content i {
    font-size: 1.2rem;
}