/*
================================================================================
PRODUCT TEMPLATE STYLESHEET - Bootstrap 5
================================================================================
このファイルについて (About this file):
- 製品ページ専用のスタイルシートです
- Bootstrap 5をベースにしています
- 色やデザインをカスタマイズできます

重要な注意事項 (IMPORTANT):
- ../../scripts/style_bs5.css (会社共通CSS) は変更しないでください
  DO NOT modify ../../scripts/style_bs5.css (Global company CSS)
- このファイルのみを編集してください
  Only edit THIS file for product-specific styling
================================================================================
*/

/* ===================================================================
   COLOR SCHEME - ブランドカラー設定
   ================================================================== */
/*
   【重要】ここで製品のブランドカラーを変更できます
   【IMPORTANT】Change your product brand colors HERE

   使い方 (How to use):
   1. 下記の色コードを変更してください
      Change the color codes below
   2. すべてのページに自動的に反映されます
      Changes will apply to all pages automatically

   推奨ツール (Recommended tools):
   - Adobe Color: https://color.adobe.com/
   - Coolors: https://coolors.co/
*/

:root {
  /* メインカラー (Primary Color) - Ultralytics Blue */
  --brand-primary: #042AFF;

  /* セカンダリカラー (Secondary Color) - Neon Green / Cyan */
  --brand-secondary: #00FFFF;

  /* ダークカラー (Dark Color) - Ultralytics Dark Blue */
  --brand-dark-blue: #111F68;

  /* ダークカラー (Dark Color) - Ultralytics Dark Blue */
  --brand-dark: #171717;

  /* 暗い背景カラー (Dark Background) */
  --brand-dark-bg: #0a0a0a;

  /* 薄い背景カラー (Light Background) */
  --brand-light-bg: #F8F9FA;

  /* CTAセクション背景 (CTA Section Background) */
  --brand-cta-bg: #111F68;

  /* テキストカラー (Text Color) */
  --brand-text: #171717;

  /* テキストカラー (Text Color) */
  --brand-dark-text: #171717;

  /* 明るいテキストカラー (Bright Text Color) */
  --brand-light-text: #ffffff;

  /* Ultralytics Gradients */
  --ultralytics-gradient-main: linear-gradient(105deg, #111F68 0%, #042AFF 45%, #76FFD6 100%);
  --ultralytics-gradient-subtle: radial-gradient(at 0% 100%, rgba(0, 255, 255, 0.2) 0%, transparent 45%), radial-gradient(at 100% 0%, rgba(255, 100, 218, 0.2) 0%, transparent 45%), radial-gradient(at 50% 50%, rgba(172, 249, 255, 0.26) 0%, transparent 60%);
}

/* ===================================================================
   1. GENERAL STYLES - 全体の基本スタイル
   =================================================================== */
/*
   ページ全体のフォント、行間、背景色などを定義します
   Defines overall fonts, line heights, and background colors
*/

body {
  background-color: #f8f9fa;
  /* 変更しないでください (Do not change) */
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: var(--brand-text);
}

p {
  line-height: 22px;
}

li {
  line-height: 150%;
}

/* ===================================================================
   2. PRODUCT HEADER - 製品ナビゲーションバー
   =================================================================== */
/*
   product-header.inc で使用されるスタイルです
   Styles used by product-header.inc

   カスタマイズ方法 (How to customize):
   - background-color: ヘッダーの背景色
   - border-bottom: 下部のボーダー色と太さ
*/

.prodnavbar {
  background-color: var(--brand-light-bg);
  /* ヘッダー背景色 */
  /* border-bottom: 7px solid var(--brand-primary); */
  /* 下部ボーダー */
  margin-bottom: 0;
  margin-top: 3px;
}

/* ナビゲーションリンクの文字色 (Navigation link text color) */
.prodnavbar .nav-link {
  color: var(--brand-text) !important;
}

/* ホバー時の文字色 (Hover state text color) */
.prodnavbar .nav-link:hover,
.prodnavbar .nav-link:focus {
  color: var(--brand-dark) !important;
}

/* ハンバーガーメニューのトグルボタン (Mobile menu toggle button) */
.prodnavbar .navbar-toggler {
  border-color: var(--brand-dark);
}

.prodnavbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(20, 184, 166, 0.25);
}

/* ハンバーガーメニューアイコン (Mobile menu icon) */
.prodnavbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ドロップダウンメニューのスタイル (Dropdown menu styles) */
.prodnavbar .dropdown-menu {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  margin-top: 0.125rem;
}

.prodnavbar .dropdown-menu.show {
  display: block;
}

.prodnavbar .dropdown-item {
  color: #333;
  padding: 0.25rem 1rem;
  display: block;
  width: 100%;
  clear: both;
  font-weight: 400;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.prodnavbar .dropdown-item:hover,
.prodnavbar .dropdown-item:focus {
  color: #262626;
  background-color: #f5f5f5;
  text-decoration: none;
}

.prodnavbar .dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.prodnavbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* ===================================================================
   3. PRODUCT FOOTER - 製品フッター
   =================================================================== */
/*
   製品フッター（product-footer.inc または widefooter.inc）のスタイルは
   ../../scripts/style_bs5.css で定義されています。
   Product footer styles are defined in ../../scripts/style_bs5.css

   デフォルトの配色 (Default colors):
   - 背景色: 薄緑 (#a7f0bfd3)
   - リンク色: 青系 (#23527c)

   製品固有の配色が必要な場合 (For product-specific colors):
   このファイル (product-style.css) で footer.product クラスをオーバーライドできます。
   You can override the footer.product class in this file (product-style.css).
*/
/* ===================================================================
   4. SECTIONS - セクション共通スタイル
   =================================================================== */
/*
   各ページで使用されるセクションのスタイルです
   Styles for sections used across pages

   使い方 (How to use):
   HTMLで <div class="section-wrapper"> を使用すると、
   自動的に適切な余白と背景色が適用されます
*/

.section-wrapper {
  padding: 60px 0;
  /* 上下の余白 (Top/bottom padding) */
  background-color: #ffffff;
  /* 背景色 (Background color) */
  color: var(--brand-text);
}

/* 偶数番目のセクションを灰色背景に (Even sections get gray background) */
.section-wrapper:nth-child(even) {
  background-color: #f3f3f3;
}

/* -----------------------------------------------------------------
   LIGHT THEME TEXT OVERRIDES (Override Bootstrap text-white)
   ----------------------------------------------------------------- */
.section-wrapper .text-white:not(.bg-dark .text-white):not(.bg-dark.text-white):not(.badge):not(.btn) {
  color: var(--brand-text) !important;
}

.section-wrapper .text-white-50:not(.bg-dark .text-white-50):not(.bg-dark.text-white-50):not(.badge):not(.btn) {
  color: #6c757d !important;
  /* Bootstrap text-muted */
}

/* 白背景を強制したい場合 (Force white background if needed) */
.section-wrapper.bg-light {
  background-color: #ffffff !important;
}

/* セクション内のカード (Cards within sections) */
.section-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

/* ===================================================================
   5. TYPOGRAPHY - 見出しとテキスト
   =================================================================== */
/*
   見出し(h1, h2, h3)とテキストのスタイルです
   Heading and text styles
*/

h1,
h2,
h3 {
  color: var(--brand-dark);
  /* 見出しの色 (Heading color) */
  font-weight: bold;
}

/* セクションタイトル (Section title) */
.section-title {
  color: var(--brand-text);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* サブセクションタイトル (Subsection title) */
.subsection-title {
  color: var(--brand-dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

/* ===================================================================
   6. BUTTONS - ボタンスタイル
   =================================================================== */
/*
   ボタンのスタイルです
   Button styles

   使い方 (How to use):
   <a href="#" class="btn btn-primary">ボタンテキスト</a>

   種類 (Types):
   - btn-primary: メインボタン (Primary button)
   - btn-outline-primary: 枠線ボタン (Outline button)
*/

.btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 14px 0 rgba(4, 42, 255, 0.39);
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 42, 255, 0.23);
  color: #ffffff;
}

.btn-outline-primary {
  color: var(--brand-light-text);
  border-color: var(--brand-light-text);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-outline-primary:hover {
  background-color: #ffffff21;
  border-color: var(--brand-light-text);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-dark:hover {
  background-color: #2b2b2b;
  border-color: #2b2b2b;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-light:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* ===================================================================
   7. HERO SECTION - ヒーローセクション(トップの大きな画像エリア)
   =================================================================== */
/*
   トップページの最初の大きな画像・テキストエリアです
   Large image/text area at the top of the homepage

   カスタマイズ方法 (How to customize):
   - background-image: 背景画像のパス
   - background-color: 背景色(画像がない場合)
*/

.hero-section {
  position: relative;
  padding: 6rem 0;
  background-image: var(--ultralytics-gradient-subtle);
  background-size: cover;
  background-position: center;
  background-color: #111F68;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ultralytics-gradient-main);
  opacity: 0.95;
}

.hero-title {
  font-weight: 700;
  color: #ffffff;
}

.hero-subtitle {
  max-width: 750px;
  opacity: 0.95;
  color: #ffffff;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
}

/* ===================================================================
   8. FEATURE CARDS - 機能カード
   =================================================================== */
/*
   製品の機能や特徴を表示するカードです
   Cards for displaying product features

   使い方 (How to use):
   <div class="feature-item">
     <i class="feature-icon fas fa-check"></i>
     <div class="feature-content">
       <strong>機能名</strong>
       <p>機能の説明</p>
     </div>
   </div>
*/

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem !important;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid var(--brand-primary);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-item strong {
  font-size: 1.2rem !important;
  display: block !important;
  color: var(--brand-dark);
}

/* ===================================================================
   9. SPACING ADJUSTMENTS - 余白調整
   =================================================================== */
/*
   ページ全体の余白を調整します
   Adjusts spacing across the page

   注意 (Note):
   余白が広すぎる/狭すぎる場合は、ここの値を変更してください
   If spacing is too wide/narrow, change values here
*/

.container>.row {
  margin-bottom: 0;
  /* 行の下余白 (Row bottom margin) */
}

/* ===================================================================
   10. FAQ SECTION - よくある質問セクション
   =================================================================== */
/*
   FAQページで使用されるスタイルです
   Styles used on FAQ page
*/

#faq-section details {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

#faq-section summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--brand-dark);
}

#faq-section summary:hover {
  color: var(--brand-primary);
}

/* ===================================================================
   11. CASE STUDY SECTION - 事例セクション
   =================================================================== */
/*
   事例ページで使用されるスタイルです
   Styles used on case studies page
*/

.case-study-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 25px;
  background-color: #fdfdfd;
  border: 1px solid #eaeaea;
  border-left: 5px solid var(--brand-primary);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease-in-out;
}

.case-study-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.case-study-logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.case-study-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.case-study-content h3 {
  font-size: 1.7em;
  margin-top: 0;
  margin-bottom: 10px;
}

.case-study-content h3 a {
  text-decoration: none;
  color: #333;
}

.case-study-content h3 a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

/* ===================================================================
   12. RESPONSIVE DESIGN - レスポンシブデザイン
   =================================================================== */
/*
   スマートフォン・タブレット対応
   Mobile and tablet responsiveness

   注意 (Note):
   画面サイズに応じて自動的にレイアウトが変わります
   Layout automatically adjusts based on screen size
*/

/* タブレット以上 (Tablet and above) */
@media (min-width: 768px) {
  .footer-item {
    text-align: center;
  }
}

/* 主な機能セクション用カード (Feature Cards) */
.feature-card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  overflow: hidden;
  color: var(--brand-text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card .card-img-top {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.feature-card .card-body {
  padding: 1.5rem;
}

.feature-card .card-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-card .card-description {
  font-size: 14px;
}

/* 業界別ソリューション用ピルタブ (Industry Pills) */
.custom-pills {
  flex-wrap: wrap;
  background-color: #f1f3f5;
  border-radius: 12px;
  padding: 6px;
}

.custom-pills .nav-link {
  color: #495057;
  border-radius: 8px;
  padding: 8px 24px;
  margin: 2px;
  font-weight: bold;
  font-size: 15px;
  background-color: transparent;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.custom-pills .nav-link:hover {
  color: var(--brand-primary);
}

.custom-pills .nav-link.active {
  background-color: #ffffff;
  color: var(--brand-primary);
  border-color: #dee2e6;
}

/* スマートフォン (Mobile) */
@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-icon {
    margin-bottom: 1rem;
  }
}

/* ===================================================================
   END OF STYLESHEET
   ================================================================== */
/*
   カスタマイズのヒント (Customization Tips):

   1. 色を変更する場合
      When changing colors:
      → 一番上の「COLOR SCHEME」セクションを編集してください
         Edit the "COLOR SCHEME" section at the top

   2. 余白を調整する場合
      When adjusting spacing:
      → 「SPACING ADJUSTMENTS」セクションを編集してください
         Edit the "SPACING ADJUSTMENTS" section

   3. 新しいスタイルを追加する場合
      When adding new styles:
      → このファイルの最後に追加してください
         Add them at the end of this file
      → コメントで説明を必ず書いてください
         Always add comments explaining the purpose

   参考資料 (References):
   - Bootstrap 5 Documentation: https://getbootstrap.com/docs/5.0/
   - CSS Variables: https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties

   質問がある場合は、開発チームに相談してください
   If you have questions, consult with the development team
*/

/* ===================================================================
   INDUSTRY SOLUTION CARDS
   =================================================================== */
.industry-card-box {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.industry-card-box:hover {
  border-color: var(--brand-primary);
  background-color: #f8f9fa;
  text-decoration: none;
}

.industry-card-box-content {
  text-align: left;
  flex: 1;
}

.industry-card-box-title {
  color: var(--brand-text);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.industry-card-box-desc {
  color: #6c757d;
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.industry-card-box-arrow {
  color: #adb5bd;
  font-size: 1rem;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.industry-card-box:hover .industry-card-box-arrow {
  color: var(--brand-primary);
}

/* ===================================================================
   Scroll to Top Button
   =================================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ultralytics-gradient-main);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  filter: brightness(1.15);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 575.98px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ===================================================================
   MODEL CARDS (features.html)
   =================================================================== */
.model-card-box {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.model-card-box:hover {
  background-color: #f8f9fa;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.model-card-box-desc {
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.8;
  text-align: left;
}

/* Footer Design begins*/
footer.product .footerlist a {
  color: #495057;
  text-decoration: none;
}

footer.product .footerlist a:hover {
  color: var(--brand-primary);
  text-decoration: none;
}

/* Footer Design ends*/

/* ===================================================================
   TASK BADGES & COMPARISON TABLE (features.html)
   =================================================================== */
.task-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  margin: 0.2rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.task-badge:hover {
  filter: brightness(0.9);
  text-decoration: none;
}

.badge-detect {
  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.5);
}

.badge-segment {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.5);
}

.badge-semantic {
  background-color: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  border-color: rgba(20, 184, 166, 0.5);
}

.badge-pose {
  background-color: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.5);
}

.badge-obb {
  background-color: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  border-color: rgba(249, 115, 22, 0.5);
}

.badge-classify {
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.5);
}

.badge-yolo26 {
  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.5);
}

.badge-yolo11 {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.5);
}

.badge-yolov8 {
  background-color: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  border-color: rgba(249, 115, 22, 0.5);
}

.badge-yolov5 {
  background-color: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.5);
}

/* Model Table */
.ultralytics-table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #333;
  margin-top: 2rem;
}

.ultralytics-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1a1a1a;
  color: #e5e5e5;
  text-align: center;
  margin-bottom: 0;
}

.ultralytics-table th,
.ultralytics-table td {
  padding: 1rem;
  border-bottom: 1px solid #333;
}

.ultralytics-table th {
  background-color: #222;
  font-weight: 700;
  color: #fff;
}

.ultralytics-table tbody tr:hover {
  background-color: #252525;
}

.ultralytics-table tbody tr:last-child td {
  border-bottom: none;
}

.ultralytics-table td a {
  color: inherit;
  text-decoration: none;
}

.ultralytics-table td a:hover {
  color: var(--brand-secondary);
}