/* ========================================
   臺灣魚拓協會 - AI 管理網站
   海洋主題設計系統
   ======================================== */

/* ========================================
   1. CSS 變數定義
   ======================================== */
:root {
  /* 色彩系統 */
  --color-primary: #28375A;        /* 深海藍 */
  --color-accent: #B4A37B;         /* 金黃色 */
  --color-text: #333333;           /* 深灰文字 */
  --color-text-light: #666666;     /* 淺灰文字 */
  --color-white: #ffffff;
  --color-bg-light: rgba(106, 187, 221, 0.08);

  /* 海洋漸層 */
  --gradient-ocean: linear-gradient(180deg,
    #ffffff 0%,                        /* 白色 */
    rgba(106, 187, 221, 0.08) 15%,     /* 極淡藍 */
    rgba(106, 187, 221, 0.12) 30%,     /* 持續極淡 */
    rgba(106, 187, 221, 0.18) 50%,     /* 淺天空藍 */
    rgba(106, 187, 221, 0.25) 68%,     /* 天空藍延伸到約 2/3 */
    rgba(80, 150, 190, 0.4) 80%,       /* 開始轉深 */
    rgba(50, 120, 160, 0.6) 90%,       /* 海洋藍 */
    #1A3A52 100%                       /* 神秘深藍 */
  );

  /* Header 漸層 */
  --gradient-header: linear-gradient(180deg,
    rgba(106,187,221,0.92) 0%,
    #ffffff 100%
  );

  /* 字體 */
  --font-sans: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', monospace;

  /* 間距 */
  --container-max-width: 1200px;
  --spacing-xs: 0.5rem;     /* 8px */
  --spacing-sm: 1rem;       /* 16px */
  --spacing-md: 1.5rem;     /* 24px */
  --spacing-lg: 2rem;       /* 32px */
  --spacing-xl: 3rem;       /* 48px */
  --spacing-2xl: 4rem;      /* 64px */

  /* 圓角 */
  --radius-sm: 0.25rem;     /* 4px */
  --radius-md: 0.5rem;      /* 8px */
  --radius-lg: 1rem;        /* 16px */

  /* 陰影 */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* ========================================
   2. 重置和基礎樣式
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.75;
  background: var(--gradient-ocean);
  background-attachment: scroll;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   3. 排版
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

h1 { font-size: 2.5rem; }      /* 40px */
h2 { font-size: 2rem; }        /* 32px */
h3 { font-size: 1.5rem; }      /* 24px */
h4 { font-size: 1.25rem; }     /* 20px */
h5 { font-size: 1.125rem; }    /* 18px */
h6 { font-size: 1rem; }        /* 16px */

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: #2ea3f2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   4. 容器和布局
   ======================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-2xl) 0;
}

/* Grid 系統 */
.grid {
  display: grid;
  gap: var(--spacing-lg);
  align-items: stretch;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Grid 直接子元素（包括 <a> 标签）拉伸到相同高度 */
.grid > * {
  display: flex;
  flex-direction: column;
}

/* Flex 工具 */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========================================
   5. Header（導航列）
   ======================================== */
.header {
  background: var(--gradient-header);
  padding: var(--spacing-sm) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-title {
  margin: 0;
  font-size: 1.75rem;
  color: var(--color-text);
}

.header-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 400;
}

.header-logo {
  height: 50px;
  width: auto;
  margin-top: 0.5rem;
  display: block;
}

.logo {
  height: 60px;
  width: auto;
}

.nav {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #2ea3f2;
  opacity: 1;
}

/* 行動版選單按鈕 */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

/* ========================================
   6. Hero 區塊
   ======================================== */
.hero {
  padding: var(--spacing-2xl) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.hero-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.hero-text.secondary {
  color: var(--color-text-light);
  font-style: italic;
  font-size: 0.95rem;
}

.hero-image {
  position: relative;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #f5f5f5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
}

/* ========================================
   7. 卡片組件
   ======================================== */
.card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.card-text {
  color: var(--color-text-light);
}

/* 帶圖片的卡片樣式 */
.card-with-image {
  padding: 0;
  overflow: hidden;
}

.card-content {
  padding: var(--spacing-lg);
}

/* 活動卡片元素 */
.event-date-badge {
  background: #dcfce7;
  color: #166534;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-md);
  display: inline-block;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.event-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

.event-location-container {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.event-location-text {
  margin: 0;
  color: var(--color-text-light);
}

.event-tag {
  background: #f3f4f6;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.event-tag-text {
  font-size: 0.875rem;
  color: var(--color-text);
}

.event-icon {
  font-size: 1.25rem;
}

/* 可點擊卡片樣式 */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-clickable {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.card-clickable:hover {
  transform: translateY(-4px);
}

/* ========================================
   8. Personnel（理監事顧問）
   ======================================== */
.personnel-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.personnel-photo-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.personnel-photo-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

/* ========================================
   8b. Articles（顧問的話）
   ======================================== */
.article-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

/* ========================================
   9. 按鈕
   ======================================== */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #075985;  /* 深藍色，對比度 5.9:1，確保通過 WCAG AA */
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #6b5644;  /* 深棕色，對比度 5.2:1，確保通過 WCAG AA */
  color: white;
}

.btn-secondary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #1e3a8a;  /* 深藍色文字，對比度 8.6:1，確保通過 WCAG AAA */
  border: 2px solid #1e3a8a;
}

.btn-outline:hover {
  background: #1e3a8a;
  color: white;
  transform: translateY(-1px);
}

/* ========================================
   9.5 魚拓作品輪播
   ======================================== */
#carousel-prev:hover,
#carousel-next:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-dot:hover {
  background: #9ca3af !important;
}

/* ========================================
   10. Footer
   ======================================== */
.footer {
  background: #1A3A52;
  color: rgba(255, 255, 255, 0.95);  /* 提升不透明度以改善對比度 */
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: auto;
}

.footer a {
  color: rgba(255, 255, 255, 0.95);  /* 提升不透明度以改善對比度 */
}

.footer a:hover {
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

/* ========================================
   11. 工具類別
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.hidden { display: none; }

/* ========================================
   12. 響應式設計
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 400px;
  }
}

/* ========================================
   12. 文章導航樣式
   ======================================== */

/* 桌面版：左右排列 */
.article-nav-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

/* 只有一個導航時佔滿寬度 */
.article-nav-container:has(.article-nav-link:only-of-type) {
  grid-template-columns: 1fr;
}

/* 返回按鈕獨立一行 */
.article-nav-container > div:last-child {
  grid-column: 1 / -1;
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.75rem !important; }
  h3 { font-size: 1.5rem !important; }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: var(--spacing-md);
  }

  .nav.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-text.secondary {
    font-size: 0.875rem;
  }

  .hero-image {
    height: 300px;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  /* 文章頁面：兩欄布局改為單欄 */
  .article-layout {
    flex-direction: column !important;
    gap: var(--spacing-lg) !important;
  }

  /* 文章頁面：隱藏左側作者欄 */
  .article-author-sidebar {
    display: none !important;
  }

  /* 文章頁面：右側內容區佔滿寬度 */
  .article-content {
    width: 100% !important;
  }

  /* 文章導航：手機版改為上下排列 */
  .article-nav-container {
    grid-template-columns: 1fr !important;
  }

  /* 文章頁面：調整內容區 padding */
  .article-content article {
    padding: var(--spacing-md) !important;
  }

  /* 文章頁面：容器最大寬度 */
  .article-content .container {
    max-width: 100% !important;
    padding-left: var(--spacing-md) !important;
    padding-right: var(--spacing-md) !important;
  }
}

/* ========================================
   13. 印刷樣式
   ======================================== */
@media print {
  .header,
  .footer,
  .btn,
  .mobile-menu-btn {
    display: none;
  }

  body {
    background: white;
  }
}

/* ========================================
   14. 活動詳細頁面專用樣式
   ======================================== */

/* 活動標題 */
.event-detail-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

/* 活動資訊區塊 */
.event-info-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.event-info-icon {
  font-size: 1.5rem;
}

.event-info-label {
  margin: 0;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.event-info-value {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

/* 照片畫廊 */
.event-gallery {
  margin-bottom: var(--spacing-2xl);
}

.event-gallery-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text);
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.event-photo-card {
  padding: 0;
  overflow: hidden;
}

.event-photo-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #f5f5f5;
}

/* 活動導航 */
.event-nav {
  border-top: 2px solid #e5e7eb;
  padding-top: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.event-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.event-nav-btn-left {
  text-align: left;
}

.event-nav-btn-right {
  text-align: right;
}

.event-nav-subtitle {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* 返回連結 */
.back-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* 內容容器 */
.event-detail-container {
  max-width: 1200px;
}

.section-no-padding-bottom {
  padding-bottom: 0;
}

.section-reduced-padding-top {
  padding-top: var(--spacing-lg);
}

/* ========================================
   15. 理監事顧問頁面專用樣式
   ======================================== */

/* 人員卡片 */
.personnel-photo-container {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.personnel-role {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
  font-size: 1rem;
}

.personnel-name {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

.personnel-card-special {
  border: 2px solid #B4A37B;
}

.personnel-role-special {
  text-align: center;
  color: #B4A37B;
  margin-bottom: var(--spacing-xs);
  font-size: 1rem;
}

/* ========================================
   16. 文章列表頁面專用樣式
   ======================================== */

/* 文章連結 */
.article-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card-hover {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.article-photo-container {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
  color: var(--color-text);
}

.article-author {
  color: var(--color-primary);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing-xs);
  font-size: 0.875rem;
}

.article-info {
  color: var(--color-text-light);
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6;
}

.article-date {
  color: var(--color-text-light);
  text-align: center;
  font-size: 0.75rem;
  margin-top: var(--spacing-sm);
}

/* ========================================
   17. 首頁專用樣式
   ======================================== */

/* 任務卡片 */
.mission-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.mission-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #2ea3f2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.mission-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.mission-desc {
  margin: 0;
  color: var(--color-text-light);
}

/* ========================================
   18. 關於我們頁面專用樣式
   ======================================== */

/* 里程碑日期徽章 */
.milestone-date-badge {
  background: #dbeafe;
  color: #1e40af;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-md);
  display: inline-block;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.milestone-title {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.milestone-desc {
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ========================================
   19. 活動預告/列表頁面專用樣式
   ======================================== */

/* 頁面標題 */
.events-page-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
}

.events-page-subtitle {
  color: var(--color-text-light);
  font-size: 1.125rem;
}

/* 活動卡片標題 */
.event-card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

/* 活動資訊行 */
.event-info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.event-info-icon-large {
  font-size: 1.25rem;
}

.event-info-text {
  margin: 0;
  color: var(--color-text-light);
}

/* 地圖連結 */
.event-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #2ea3f2;
  text-decoration: none;
  margin-left: 0.5rem;
  font-size: 0.875rem;
}

/* 活動類型標籤 */
.event-type-badge {
  background: #f3f4f6;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.event-type-text {
  font-size: 0.875rem;
  color: var(--color-text);
}

/* 無活動提示 */
.no-events-container {
  display: none;
}

.no-events-text {
  color: var(--color-text-light);
  font-size: 1.125rem;
}

.no-events-link-text {
  color: var(--color-text-light);
  margin-top: var(--spacing-sm);
}

.no-events-link {
  color: #2ea3f2;
}

/* ========================================
   照片 Lightbox（僅桌面版）
   ======================================== */
@media (min-width: 769px) {
  .event-photo-card {
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .event-photo-card:hover {
    transform: scale(1.05);
  }

  /* Lightbox 遮罩 */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
  }

  .lightbox.active {
    display: flex;
  }

  /* Lightbox 內容容器 */
  .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Lightbox 圖片 */
  .lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }

  /* 關閉按鈕 */
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10000;
  }

  .lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  /* 左右切換按鈕 */
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10000;
  }

  .lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  .lightbox-prev {
    left: 30px;
  }

  .lightbox-next {
    right: 30px;
  }

  /* 照片計數器 */
  .lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    z-index: 10000;
  }
}
