.toast-container {
    position: fixed;
    top: var(--site-notification-top, calc(env(safe-area-inset-top, 0px) + 12px));
    right: 20px;
    z-index: 10000000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    background: #23273a;
    color: #e2e8f0;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    min-width: 280px;
    max-width: 350px;
}

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

.toast.hide {
    opacity: 0;
    transform: translateX(100%);
}

.toast-icon {
    width: 24px;
    height: 24px;
    font-size: 1.5rem;
}

.toast.success .toast-icon {
    color: #22c55e;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-title {
    font-weight: 700;
}

.toast-message {
    font-size: 0.9em;
    opacity: 0.9;
}

.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
}
.toast-close:hover {
    opacity: 1;
} 
