/* 仟亞電訊 補充樣式 */

#site-header.shadow {
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 0.06);
}

.card {
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: all 0.2s;
}
.card:hover {
  box-shadow: 0 10px 30px -10px rgb(0 0 0 / 0.15);
  border-top: 2px solid #cc0000;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: all 0.2s;
  cursor: pointer;
  border: 0;
}
.btn-primary {
  background: #cc0000;
  color: #fff;
}
.btn-primary:hover { background: #b30000; }

.btn-secondary {
  background: #fff;
  color: #cc0000;
  border: 1px solid #cc0000;
}
.btn-secondary:hover { background: #cc0000; color: #fff; }

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #2a2a2a;
  font-size: 0.875rem;
  font-family: inherit;
}
.input:focus {
  outline: none;
  border-color: #cc0000;
}

.prose-runasia h2 { font-size: 1.75rem; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; color: #2a2a2a; }
.prose-runasia h3 { font-size: 1.35rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.75rem; color: #2a2a2a; }
.prose-runasia p  { margin-bottom: 1rem; line-height: 1.8; color: #666; }
.prose-runasia ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; color: #666; }
.prose-runasia ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; color: #666; }
.prose-runasia li { margin-bottom: 0.5rem; }
.prose-runasia a  { color: #cc0000; text-decoration: none; }
.prose-runasia a:hover { text-decoration: underline; }
.prose-runasia strong { color: #2a2a2a; }
.prose-runasia img { max-width: 100%; height: auto; margin: 1rem 0; }

/* 文章內表格樣式 */
.prose-runasia table { width: 100% !important; border-collapse: collapse !important; margin: 1.5rem 0; font-size: 0.95rem; }
.prose-runasia table th { background: #cc0000 !important; color: #fff !important; padding: 0.65rem 1rem !important; text-align: left; font-weight: 700; border: 1px solid #b00000 !important; }
.prose-runasia table td { padding: 0.6rem 1rem !important; border: 1px solid #ddd !important; color: #555 !important; vertical-align: top !important; line-height: 1.6; }
.prose-runasia table tr:nth-child(even) td { background: #fafafa !important; }
.prose-runasia table tr:hover td { background: #fff5f5 !important; }
.prose-runasia table caption { caption-side: bottom; text-align: center; font-size: 0.85rem; color: #999; margin-top: 0.5rem; }

/* Admin */
.admin-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #e5e5e5;
  font-size: 0.875rem;
  background: #fff;
}
.admin-input:focus { outline: none; border-color: #cc0000; }

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-new       { background: #fef2f2; color: #cc0000; }
.status-progress  { background: #fefce8; color: #a16207; }
.status-quoted    { background: #eff6ff; color: #1d4ed8; }
.status-closed    { background: #f3f4f6; color: #4b5563; }
.status-published { background: #f0fdf4; color: #15803d; }
.status-draft     { background: #f3f4f6; color: #4b5563; }