.toast-container {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 90%;
    max-width: 450px;
    pointer-events: none;
}

.toast {
    width: 100%;
    padding: 20px 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 8px solid #ccc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    pointer-events: auto;
}

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

.toast-success {
    border-left-color: #10b981;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-info {
    border-left-color: #3b82f6;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    color: #10b981;
}

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

.toast-info .toast-icon {
    color: #3b82f6;
}

.toast-content {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.5;
}

.toast-close {
    background: #f3f4f6;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #e5e7eb;
    color: #111827;
}

@media (max-width: 480px) {
    .toast-container {
        width: 95%;
    }

    .toast {
        padding: 16px;
    }

    .toast-content {
        font-size: 0.95rem;
    }
}