/* ========== 近义词工具容器 ========== */
.sy-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 200px);
    min-height: 600px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sy-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    border-radius: 0;
    margin: 0;
}

/* ========== 顶部工具栏 ========== */
.sy-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    flex-wrap: wrap;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
    flex-shrink: 0;
}

.toolbar-group {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    min-height: 28px;
}

.toolbar-btn {
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #059669;
    transition: all 0.2s;
    white-space: nowrap;
}

.toolbar-btn:hover:not(:disabled) {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.toolbar-btn:active:not(:disabled) { transform: translateY(0); }

.toolbar-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.toolbar-btn-primary {
    background: #ffffff;
    color: #059669;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.toolbar-btn-primary:hover:not(:disabled) {
    background: #f0fdf4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* ========== 主内容区三栏布局 ========== */
.sy-main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
    background: #f8fafc;
}

/* ========== 左侧历史面板 ========== */
.sy-history-panel {
    width: 190px;
    background: white;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: linear-gradient(to bottom, #fafafa, #f5f5f5);
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.history-title {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.history-clear-btn {
    background: #fff0f0;
    border: none;
    color: #ef4444;
    font-size: 13px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 3px;
    transition: all 0.2s;
}

.history-clear-btn:hover { background: #fde8e8; }

.history-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    scrollbar-width: thin;
    scrollbar-color: #6ee7b7 #d1fae5;
}

.history-list::-webkit-scrollbar { width: 4px; }
.history-list::-webkit-scrollbar-track { background: #d1fae5; }
.history-list::-webkit-scrollbar-thumb { background: #6ee7b7; border-radius: 2px; }
.history-list::-webkit-scrollbar-thumb:hover { background: #34d399; }

.history-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 12px;
    color: #94a3b8;
    font-size: 12px;
    text-align: center;
}

.history-empty span:first-child { font-size: 22px; }

.history-item {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    margin-bottom: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    animation: syFadeIn 0.2s ease;
}

@keyframes syFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.history-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateX(2px);
}

.history-item.active {
    background: #ecfdf5;
    border-color: #10b981;
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2);
}

.history-item-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: #fde8e8;
    color: #ef4444;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.history-item:hover .history-item-delete { opacity: 1; }
.history-item-delete:hover { background: #ef4444; color: white; }

.history-item-word {
    font-size: 14px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 3px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-item-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.history-item-time { color: #94a3b8; font-size: 11px; }

.history-item-count {
    font-size: 11px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 4px;
    background: #dcfce7;
    color: #16a34a;
}

.history-item-style {
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 8px;
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 500;
}

/* ========== 中间输入面板 ========== */
.sy-input-panel {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: white;
    overflow: hidden;
    border-right: 1px solid #e2e8f0;
}

.input-panel-header {
    padding: 14px 16px 10px;
    background: linear-gradient(to bottom, #fafafa, #f5f5f5);
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.input-panel-header h3 {
    margin: 0 0 4px 0;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.input-panel-subtitle {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
}

.input-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scrollbar-width: thin;
    scrollbar-color: #6ee7b7 #d1fae5;
}

.input-panel-body::-webkit-scrollbar { width: 4px; }
.input-panel-body::-webkit-scrollbar-track { background: #d1fae5; }
.input-panel-body::-webkit-scrollbar-thumb { background: #6ee7b7; border-radius: 2px; }
.input-panel-body::-webkit-scrollbar-thumb:hover { background: #34d399; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required { color: #ef4444; font-size: 14px; }
.optional { color: #9ca3af; font-size: 12px; font-weight: 400; }

.form-input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #1e293b;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input.is-error {
    border-color: #ef4444;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    color: #374151;
    background: #fafafa;
    resize: vertical;
    min-height: 70px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
    line-height: 1.6;
    box-sizing: border-box;
}

.form-textarea:focus {
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea.is-error {
    border-color: #ef4444;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-hint-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
}

.input-tip {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.4;
    flex: 1;
}

.word-char-count {
    font-size: 11px;
    color: #9ca3af;
    white-space: nowrap;
    transition: color 0.2s;
}

.word-char-count.warn {
    color: #f59e0b;
    font-weight: 600;
}

/* 风格选择标签 */
.style-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.style-tab {
    padding: 5px 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.style-tab:hover { background: #e2e8f0; color: #475569; }

.style-tab.active {
    background: #059669;
    border-color: #059669;
    color: white;
    font-weight: 500;
}

/* 查询按钮 */
.query-btn-wrap { margin-top: 4px; }

.query-main-btn {
    width: 100%;
    padding: 11px 16px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
    letter-spacing: 0.5px;
}

.query-main-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
    filter: brightness(1.05);
}

.query-main-btn:active:not(:disabled) { transform: translateY(0); }

.query-main-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ========== 右侧结果面板 ========== */
.sy-result-panel {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    background: white;
    overflow: hidden;
}

.result-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(to bottom, #fafafa, #f5f5f5);
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.result-panel-title {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.result-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    background: #dcfce7;
    color: #16a34a;
}

.result-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: #6ee7b7 #d1fae5;
}

.result-content::-webkit-scrollbar { width: 4px; }
.result-content::-webkit-scrollbar-track { background: #d1fae5; }
.result-content::-webkit-scrollbar-thumb { background: #6ee7b7; border-radius: 2px; }
.result-content::-webkit-scrollbar-thumb:hover { background: #34d399; }

/* 空状态 */
.sy-empty-hint {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
    padding: 40px 20px;
}

.sy-empty-hint .empty-icon { font-size: 44px; opacity: 0.7; }
.sy-empty-sub { font-size: 12px; color: #cbd5e1; }

/* Loading 状态 */
.sy-loading {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 40px 20px;
    min-height: 300px;
}

.sy-loading-spin {
    width: 36px;
    height: 36px;
    border: 3px solid #e2e8f0;
    border-top-color: #059669;
    border-radius: 50%;
    animation: sySpin 0.8s linear infinite;
}

@keyframes sySpin { to { transform: rotate(360deg); } }

.sy-loading-text { font-size: 14px; color: #64748b; }

/* 错误提示 */
.sy-error-area {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-left: 4px solid #ef4444;
    border-radius: 6px;
    padding: 14px 16px;
    color: #c53030;
    font-size: 13px;
    line-height: 1.6;
}

.sy-error-icon {
    margin-right: 6px;
    font-style: normal;
}

.sy-error-msg {
    color: #c53030;
    font-size: 13px;
    line-height: 1.6;
}

.sy-retry-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 12px;
    background: white;
    border: 1px solid #ef4444;
    color: #ef4444;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.sy-retry-btn:hover { background: #ef4444; color: white; }

/* ========== 查询结果渲染区 ========== */
.sy-result {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: syFadeIn 0.3s ease;
}

/* 词语头部信息卡 */
.word-header-card {
    padding: 16px 18px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
    border-left: 4px solid #10b981;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.word-main {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.word-title {
    font-size: 28px;
    font-weight: 800;
    color: #065f46;
    line-height: 1.1;
    letter-spacing: 2px;
}

.word-pinyin {
    font-size: 13px;
    color: #059669;
    margin-top: 3px;
    letter-spacing: 1px;
}

.word-pos-meaning {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.word-pos-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(5, 150, 105, 0.15);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
    flex-shrink: 0;
}

.word-base-meaning {
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
    flex: 1;
}

/* 近义词分组 */
.synonym-groups {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.synonym-group {
    border: 1px solid #e2e8f0;
    border-left: 3px solid #10b981;
    border-radius: 8px;
    overflow: hidden;
    animation: syFadeIn 0.25s ease;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.group-header:hover { background: linear-gradient(to bottom, #f1f5f9, #e2e8f0); }

.group-toggle { font-size: 12px; color: #94a3b8; transition: transform 0.2s; }
.group-toggle.collapsed { transform: rotate(-90deg); }

.group-name {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    flex: 1;
}

.group-count {
    font-size: 11px;
    padding: 1px 7px;
    border-radius: 8px;
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 500;
}

.group-body {
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    background: white;
}

/* 近义词单词点击复制 */
.sy-copy-word {
    cursor: pointer;
    transition: color 0.15s, text-decoration 0.15s;
    user-select: none;
}

.sy-copy-word:hover {
    color: #059669;
    text-decoration: underline dotted #059669;
}

.sy-copy-word::after {
    content: ' 📋';
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.15s;
}

.sy-copy-word:hover::after {
    opacity: 0.7;
}

/* 近义词卡片 */
.synonym-card {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #fafafa;
    transition: all 0.2s;
    cursor: default;
    position: relative;
}

.synonym-card:hover {
    border-color: #10b981;
    background: #f0fdf4;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

.synonym-card-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.synonym-word {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 1px;
}

.synonym-pinyin {
    font-size: 11px;
    color: #64748b;
}

.synonym-style-badge {
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 8px;
    font-weight: 500;
    white-space: nowrap;
}

.style-general   { background: #f1f5f9; color: #475569; }
.style-formal    { background: #ede9fe; color: #7c3aed; }
.style-colloquial{ background: #fef9c3; color: #92400e; }
.style-literary  { background: #fce7f3; color: #9d174d; }
.style-network   { background: #dbeafe; color: #1d4ed8; }

.similarity-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.similarity-dots {
    display: flex;
    gap: 3px;
}

.similarity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: background 0.2s;
}

.similarity-dot.filled { background: #10b981; }
.similarity-dot.filled.low { background: #f59e0b; }
.similarity-dot.filled.medium { background: #6ee7b7; }

.similarity-label {
    font-size: 11px;
    color: #94a3b8;
}

.synonym-difference {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 6px;
    padding: 5px 8px;
    background: rgba(16, 185, 129, 0.05);
    border-left: 2px solid #a7f3d0;
    border-radius: 0 4px 4px 0;
}

.synonym-example {
    font-size: 12px;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
}

.synonym-example::before { content: '"'; color: #10b981; font-style: normal; font-weight: bold; }
.synonym-example::after  { content: '"'; color: #10b981; font-style: normal; font-weight: bold; }

/* 反义词区 */
.antonyms-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    background: #fff8f8;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
}

.section-title {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

.antonym-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.antonym-chip {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: default;
    max-width: 200px;
}

.antonym-chip:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    transform: translateY(-1px);
}

.antonym-word {
    font-size: 15px;
    font-weight: 700;
    color: #dc2626;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

/* 反义词点击复制：悬停保持红色，覆盖通用 .sy-copy-word:hover 的绿色 */
.antonym-word.sy-copy-word:hover {
    color: #dc2626;
    text-decoration: underline dotted #dc2626;
}

.antonym-example {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
    font-style: italic;
}

/* 使用贴士 */
.usage-tips-card {
    padding: 14px 16px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tips-icon { font-size: 18px; flex-shrink: 0; }

.tips-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    flex: 1;
}

/* ========== 模态框 ========== */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(2px);
}

.modal.show { display: flex; }

.modal-content {
    background: white;
    border-radius: 8px;
    max-width: 680px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    animation: syModalIn 0.2s ease-out;
}

@keyframes syModalIn {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    flex-shrink: 0;
}

.modal-header h3 { margin: 0; font-size: 15px; font-weight: 600; }

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover { background: rgba(255, 255, 255, 0.35); }

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

/* 示例网格 */
.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.example-card {
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
}

.example-card:hover {
    border-color: #10b981;
    background: #f0fdf4;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
}

.example-card-word {
    font-size: 20px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.example-card-scene {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

.example-card-style {
    display: inline-block;
    font-size: 11px;
    padding: 1px 7px;
    border-radius: 8px;
    background: #d1fae5;
    color: #065f46;
    font-weight: 500;
}

/* 复制 Toast */
.copy-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(5, 150, 105, 0.95);
    color: white;
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
