/* src/components/ToastContainer/Toast.module.css (Shell) */
._toast_16y76_2 {
    pointer-events: auto;
    margin-bottom: 8px;
    padding: 12px 16px;
    border-radius: 6px;
    color: white;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    opacity: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 280px;
    max-width: 400px;
    word-wrap: break-word;
}

._toast--visible_16y76_24 {
    transform: translateX(0);
    opacity: 1;
}

._toast--exiting_16y76_29 {
    transform: translateX(100%);
    opacity: 0;
}

._toast--success_16y76_34 {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

._toast--error_16y76_38 {
    background: linear-gradient(135deg, #f56565, #e53e3e);
}

._toast--warning_16y76_42 {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
}

._toast--info_16y76_46 {
    background: linear-gradient(135deg, #4299e1, #3182ce);
}

._toastContent_16y76_50 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

._toastMessage_16y76_57 {
    font-weight: 500;
}

._toastSource_16y76_61 {
    font-size: 12px;
    opacity: 0.8;
    font-style: italic;
}

._toastClose_16y76_67 {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

._toastClose_16y76_67:hover {
    opacity: 1;
}/* src/components/ToastContainer/ToastContainer.module.css (Shell) */
._toastContainer_1ipa8_2 {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    pointer-events: none;
    max-width: 400px;
}