/**
 * 标签复制按钮样式
 */

.copy-tags-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f472b6, #ec4899);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.copy-tags-btn:hover {
    background: linear-gradient(135deg, #ec4899, #db2777);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244, 114, 182, 0.4);
}

.copy-tags-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(244, 114, 182, 0.3);
}

.copy-tags-btn .btn-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

/* 手机端优化 */
@media (max-width: 768px) {
    .copy-tags-btn {
        padding: 10px 16px;
        font-size: 14px;
        margin-top: 12px;
    }
    
    .copy-tags-btn .btn-icon {
        width: 16px;
        height: 16px;
    }
}
