/* ==================================== */
/* Thromboprophylaxis Score - Styles    */
/* ==================================== */

/* Form container */
.thromboprophylaxis-form .score-form-content {
  padding: 0;
}

.thromboprophylaxis-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ================================ */
/* Tabs Navigation                   */
/* ================================ */

.thromboprophylaxis-tabs {
  display: flex;
  background: var(--bg-card, white);
  border-bottom: 2px solid var(--border-color, #e0e0e0);
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.thromboprophylaxis-tabs::-webkit-scrollbar {
  height: 4px;
}

.thromboprophylaxis-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.thromboprophylaxis-tabs::-webkit-scrollbar-thumb {
  background: var(--border-color, #ddd);
  border-radius: 2px;
}

.thromboprophylaxis-tab {
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary, #666);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.thromboprophylaxis-tab:hover {
  color: var(--text-primary, #333);
}

.thromboprophylaxis-tab.active {
  color: var(--accent-primary, #D97757);
}

.thromboprophylaxis-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-primary, #D97757);
  border-radius: 2px 2px 0 0;
}

/* Tab info icon */
.thromboprophylaxis-tab-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  font-size: 10px;
  color: var(--text-muted, #999);
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: help;
}

/* ================================ */
/* Tab Content Area                  */
/* ================================ */

.thromboprophylaxis-tab-content {
  padding: 20px;
  min-height: 300px;
}

.thromboprophylaxis-tab-panel {
  display: none;
}

.thromboprophylaxis-tab-panel.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tab header */
.thromboprophylaxis-tab-header {
  margin-bottom: 16px;
}

.thromboprophylaxis-tab-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary, #333);
  margin: 0 0 4px 0;
}

.thromboprophylaxis-tab-description {
  font-size: 13px;
  color: var(--text-secondary, #666);
  margin: 0;
}

/* ================================ */
/* ACOG Matrix Tab                   */
/* ================================ */

.thromboprophylaxis-matrix {
  overflow-x: auto;
  margin-top: 16px;
}

.thromboprophylaxis-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.thromboprophylaxis-matrix-table th,
.thromboprophylaxis-matrix-table td {
  padding: 10px 8px;
  border: 1px solid var(--border-color, #ddd);
  text-align: center;
  vertical-align: middle;
}

.thromboprophylaxis-matrix-table th {
  background: var(--bg-sidebar-hover, #f5f5f5);
  font-weight: 600;
  color: var(--text-primary, #333);
}

.thromboprophylaxis-matrix-table td {
  background: var(--bg-card, white);
}

.thromboprophylaxis-matrix-table td.highlight {
  background: rgba(217, 119, 87, 0.15);
  font-weight: 500;
}

.thromboprophylaxis-matrix-table .row-header {
  text-align: left;
  font-weight: 500;
  background: var(--bg-sidebar-hover, #f5f5f5);
  min-width: 180px;
}

/* Cell recommendation badges */
.thromboprophylaxis-cell-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--border-radius-sm, 4px);
  font-size: 11px;
  font-weight: 500;
}

.thromboprophylaxis-cell-badge.surveillance {
  background: rgba(93, 138, 102, 0.2);
  color: #4a7c54;
}

.thromboprophylaxis-cell-badge.consider {
  background: rgba(234, 179, 8, 0.2);
  color: #9a7408;
}

.thromboprophylaxis-cell-badge.prophylaxis {
  background: rgba(217, 119, 87, 0.2);
  color: #b85a3d;
}

.thromboprophylaxis-cell-badge.therapeutic {
  background: rgba(196, 92, 92, 0.2);
  color: #a84545;
}

/* ================================ */
/* ASH Decision Tree Tab             */
/* ================================ */

.thromboprophylaxis-tree {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.thromboprophylaxis-tree-node {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-sidebar-hover, #f5f5f5);
  border-radius: var(--border-radius-md, 8px);
  border-left: 4px solid var(--border-color, #ddd);
  transition: all 0.2s ease;
}

.thromboprophylaxis-tree-node.active {
  border-left-color: var(--accent-primary, #D97757);
  background: rgba(217, 119, 87, 0.08);
}

.thromboprophylaxis-tree-node.inactive {
  opacity: 0.5;
}

.thromboprophylaxis-tree-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text-muted, #999);
  color: white;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.thromboprophylaxis-tree-node.active .thromboprophylaxis-tree-number {
  background: var(--accent-primary, #D97757);
}

.thromboprophylaxis-tree-content {
  flex: 1;
}

.thromboprophylaxis-tree-question {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary, #333);
  margin: 0 0 4px 0;
}

.thromboprophylaxis-tree-detail {
  font-size: 12px;
  color: var(--text-secondary, #666);
  margin: 0;
}

.thromboprophylaxis-tree-result {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary, #D97757);
  margin: 4px 0 0 0;
}

/* ================================ */
/* CNGOF 2010 Stratification Tab     */
/* ================================ */

.thromboprophylaxis-stratification {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.thromboprophylaxis-strat-level {
  padding: 14px 16px;
  border-radius: var(--border-radius-md, 8px);
  border: 2px solid var(--border-color, #e0e0e0);
  transition: all 0.2s ease;
}

.thromboprophylaxis-strat-level.active {
  border-color: currentColor;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thromboprophylaxis-strat-level.majeur {
  --level-color: #a84545;
  background: rgba(168, 69, 69, 0.05);
}

.thromboprophylaxis-strat-level.majeur.active {
  border-color: #a84545;
  background: rgba(168, 69, 69, 0.1);
}

.thromboprophylaxis-strat-level.haut {
  --level-color: #b85a3d;
  background: rgba(184, 90, 61, 0.05);
}

.thromboprophylaxis-strat-level.haut.active {
  border-color: #b85a3d;
  background: rgba(184, 90, 61, 0.1);
}

.thromboprophylaxis-strat-level.modere {
  --level-color: #9a7408;
  background: rgba(154, 116, 8, 0.05);
}

.thromboprophylaxis-strat-level.modere.active {
  border-color: #9a7408;
  background: rgba(154, 116, 8, 0.1);
}

.thromboprophylaxis-strat-level.faible {
  --level-color: #4a7c54;
  background: rgba(74, 124, 84, 0.05);
}

.thromboprophylaxis-strat-level.faible.active {
  border-color: #4a7c54;
  background: rgba(74, 124, 84, 0.1);
}

.thromboprophylaxis-strat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.thromboprophylaxis-strat-badge {
  padding: 4px 10px;
  border-radius: var(--border-radius-sm, 4px);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.thromboprophylaxis-strat-level.majeur .thromboprophylaxis-strat-badge {
  background: #a84545;
}

.thromboprophylaxis-strat-level.haut .thromboprophylaxis-strat-badge {
  background: #b85a3d;
}

.thromboprophylaxis-strat-level.modere .thromboprophylaxis-strat-badge {
  background: #9a7408;
}

.thromboprophylaxis-strat-level.faible .thromboprophylaxis-strat-badge {
  background: #4a7c54;
}

.thromboprophylaxis-strat-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #333);
  margin: 0;
}

.thromboprophylaxis-strat-criteria {
  font-size: 12px;
  color: var(--text-secondary, #666);
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.thromboprophylaxis-strat-recommendation {
  font-size: 12px;
  font-weight: 500;
  color: var(--level-color, var(--text-primary));
  margin: 0;
}

/* ================================ */
/* CNGOF 2015 OR Calculation Tab     */
/* ================================ */

.thromboprophylaxis-or-section {
  margin-top: 16px;
}

.thromboprophylaxis-or-notice {
  padding: 12px 16px;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: var(--border-radius-md, 8px);
  margin-bottom: 16px;
}

.thromboprophylaxis-or-notice p {
  margin: 0;
  font-size: 13px;
  color: #9a7408;
}

.thromboprophylaxis-or-factors {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thromboprophylaxis-or-category {
  margin-bottom: 16px;
}

.thromboprophylaxis-or-category-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary, #666);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.thromboprophylaxis-or-factor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg-sidebar-hover, #f5f5f5);
  border-radius: var(--border-radius-sm, 6px);
  margin-bottom: 4px;
}

.thromboprophylaxis-or-factor.active {
  background: rgba(217, 119, 87, 0.1);
}

.thromboprophylaxis-or-factor-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-primary, #333);
}

.thromboprophylaxis-or-factor-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary, #666);
  background: var(--bg-card, white);
  padding: 2px 8px;
  border-radius: var(--border-radius-sm, 4px);
}

.thromboprophylaxis-or-factor.active .thromboprophylaxis-or-factor-value {
  color: var(--accent-primary, #D97757);
  background: white;
}

/* OR Result display */
.thromboprophylaxis-or-result {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-sidebar-hover, #f5f5f5);
  border-radius: var(--border-radius-md, 8px);
  text-align: center;
}

.thromboprophylaxis-or-result-label {
  font-size: 12px;
  color: var(--text-secondary, #666);
  margin: 0 0 4px 0;
}

.thromboprophylaxis-or-result-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary, #333);
  margin: 0 0 8px 0;
}

.thromboprophylaxis-or-result-value.high {
  color: var(--accent-primary, #D97757);
}

.thromboprophylaxis-or-threshold {
  font-size: 12px;
  color: var(--text-secondary, #666);
  margin: 0;
}

.thromboprophylaxis-or-threshold strong {
  color: var(--text-primary, #333);
}

/* ================================ */
/* RCOG Recommendations Table        */
/* ================================ */

.thromboprophylaxis-rcog-reco-table {
  margin-top: 16px;
  border: 1px solid var(--border-color, #e0e0e0);
  border-radius: var(--border-radius-md, 8px);
  overflow: hidden;
}

.thromboprophylaxis-rcog-reco-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--bg-sidebar-hover, #f5f5f5);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.thromboprophylaxis-rcog-reco-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-top: 1px solid var(--border-color, #e0e0e0);
  transition: background 0.2s ease;
}

.thromboprophylaxis-rcog-reco-row.active {
  background: rgba(217, 119, 87, 0.1);
  border-left: 3px solid var(--accent-primary, #D97757);
}

.thromboprophylaxis-rcog-reco-cell {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-primary, #333);
}

.thromboprophylaxis-rcog-reco-cell.header {
  color: var(--text-secondary, #666);
}

.thromboprophylaxis-rcog-reco-cell.condition {
  font-weight: 500;
}

/* ================================ */
/* Points-Based Score Displays       */
/* ================================ */

.thromboprophylaxis-points-section {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thromboprophylaxis-points-category {
  background: var(--bg-sidebar-hover, #f8f8f8);
  border-radius: var(--border-radius-md, 8px);
  padding: 12px;
}

.thromboprophylaxis-points-category-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary, #666);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.thromboprophylaxis-points-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin: 2px 0;
  border-radius: var(--border-radius-sm, 4px);
  font-size: 13px;
  transition: all 0.2s ease;
}

.thromboprophylaxis-points-row.clickable {
  cursor: pointer;
}

.thromboprophylaxis-points-row.clickable:hover {
  background: var(--bg-sidebar-hover, #f0f0f0);
}

.thromboprophylaxis-points-row.active {
  background: rgba(217, 119, 87, 0.15);
}

.thromboprophylaxis-points-row.clickable.active:hover {
  background: rgba(217, 119, 87, 0.2);
}

/* Checkbox/Radio styling in points rows */
.thromboprophylaxis-points-row input[type="checkbox"],
.thromboprophylaxis-points-row input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--accent-primary, #D97757);
  flex-shrink: 0;
}

.thromboprophylaxis-points-label {
  color: var(--text-primary, #333);
  flex: 1;
  cursor: inherit;
}

.thromboprophylaxis-points-value {
  font-weight: 600;
  color: var(--text-muted, #999);
  min-width: 40px;
  text-align: right;
}

.thromboprophylaxis-points-row.active .thromboprophylaxis-points-value {
  color: var(--accent-primary, #D97757);
}

.thromboprophylaxis-points-value.special {
  font-size: 11px;
  background: rgba(217, 119, 87, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  color: #b85a3d;
}

/* Points Result Display */
.thromboprophylaxis-points-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-sidebar-hover, #f5f5f5);
  border-radius: var(--border-radius-md, 8px);
  margin-top: 16px;
}

.thromboprophylaxis-points-total-label {
  font-size: 14px;
  color: var(--text-secondary, #666);
}

.thromboprophylaxis-points-total-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary, #D97757);
}

/* Points Interpretation Tables */
.thromboprophylaxis-points-interpretation {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.thromboprophylaxis-points-interpretation.strathege,
.thromboprophylaxis-points-interpretation.thrombobs {
  flex-direction: column;
}

.thromboprophylaxis-points-interp-table {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card, white);
  border: 1px solid var(--border-color, #e0e0e0);
  border-radius: var(--border-radius-md, 8px);
  overflow: hidden;
}

.thromboprophylaxis-points-interp-table h4 {
  margin: 0;
  padding: 10px 12px;
  background: var(--bg-sidebar-hover, #f5f5f5);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #333);
  border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.thromboprophylaxis-points-interpretation h4 {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #333);
}

.thromboprophylaxis-points-interp-row {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-color, #e0e0e0);
  transition: background 0.2s ease;
}

.thromboprophylaxis-points-interp-row:last-child {
  border-bottom: none;
}

.thromboprophylaxis-points-interp-row.active {
  background: rgba(217, 119, 87, 0.12);
  border-left: 3px solid var(--accent-primary, #D97757);
}

.thromboprophylaxis-points-interp-score {
  font-weight: 600;
  color: var(--text-secondary, #666);
  min-width: 60px;
  font-size: 13px;
}

.thromboprophylaxis-points-interp-row.active .thromboprophylaxis-points-interp-score {
  color: var(--accent-primary, #D97757);
}

.thromboprophylaxis-points-interp-action {
  flex: 1;
  font-size: 13px;
  color: var(--text-primary, #333);
}

/* ================================ */
/* Result Section                    */
/* ================================ */

.thromboprophylaxis-result-section {
  padding: 16px;
  background: var(--bg-card, white);
  border-top: 1px solid var(--border-color, #e0e0e0);
}

.thromboprophylaxis-result-card {
  padding: 16px;
  border-radius: var(--border-radius-md, 8px);
  border: 2px solid var(--border-color, #e0e0e0);
}

.thromboprophylaxis-result-card.low {
  border-color: #4a7c54;
  background: rgba(74, 124, 84, 0.05);
}

.thromboprophylaxis-result-card.moderate {
  border-color: #9a7408;
  background: rgba(154, 116, 8, 0.05);
}

.thromboprophylaxis-result-card.high {
  border-color: #b85a3d;
  background: rgba(184, 90, 61, 0.05);
}

.thromboprophylaxis-result-card.very-high {
  border-color: #a84545;
  background: rgba(168, 69, 69, 0.05);
}

.thromboprophylaxis-result-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #333);
  margin: 0 0 8px 0;
}

.thromboprophylaxis-result-recommendation {
  font-size: 14px;
  color: var(--text-primary, #333);
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.thromboprophylaxis-result-details {
  font-size: 12px;
  color: var(--text-secondary, #666);
  margin: 0;
  line-height: 1.5;
}

/* ================================ */
/* Responsive                        */
/* ================================ */

@media (max-width: 768px) {
  .thromboprophylaxis-tabs {
    padding: 0 8px;
    scrollbar-width: thin;
  }

  .thromboprophylaxis-tab {
    padding: 10px 12px;
    font-size: 12px;
  }

  .thromboprophylaxis-tab-content {
    padding: 16px;
  }

  .thromboprophylaxis-matrix-table {
    font-size: 11px;
  }

  .thromboprophylaxis-matrix-table th,
  .thromboprophylaxis-matrix-table td {
    padding: 8px 6px;
  }

  /* RCOG Reco table responsive */
  .thromboprophylaxis-rcog-reco-header,
  .thromboprophylaxis-rcog-reco-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .thromboprophylaxis-rcog-reco-cell {
    padding: 8px 10px;
    font-size: 12px;
  }

  /* Points interpretation responsive */
  .thromboprophylaxis-points-interpretation {
    flex-direction: column;
  }

  .thromboprophylaxis-points-interp-table {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .thromboprophylaxis-tab-content {
    padding: 12px;
  }

  .thromboprophylaxis-tree-node {
    padding: 10px 12px;
  }

  .thromboprophylaxis-strat-level {
    padding: 12px;
  }

  /* RCOG Reco table mobile */
  .thromboprophylaxis-rcog-reco-header,
  .thromboprophylaxis-rcog-reco-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .thromboprophylaxis-rcog-reco-cell {
    padding: 6px 10px;
  }

  .thromboprophylaxis-rcog-reco-cell:not(.condition):not(.header) {
    padding-left: 20px;
    font-size: 12px;
    color: var(--text-secondary, #666);
  }

  .thromboprophylaxis-rcog-reco-cell:not(.condition):not(.header)::before {
    content: '\2192 ';
  }

  /* Points display mobile */
  .thromboprophylaxis-points-result {
    flex-direction: column;
    gap: 8px;
  }

  .thromboprophylaxis-points-row {
    padding: 5px 6px;
    font-size: 12px;
  }

  .thromboprophylaxis-points-interp-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 12px;
  }

  .thromboprophylaxis-points-interp-score {
    font-size: 12px;
    background: var(--bg-sidebar-hover, #f0f0f0);
    padding: 2px 8px;
    border-radius: 4px;
  }
}

/* ================================ */
/* Dark Theme Support                */
/* ================================ */

[data-theme="dark"] .thromboprophylaxis-tabs {
  border-color: var(--border-color, #444);
}

[data-theme="dark"] .thromboprophylaxis-matrix-table th,
[data-theme="dark"] .thromboprophylaxis-matrix-table .row-header {
  background: var(--bg-sidebar-hover, #2a2a2a);
}

[data-theme="dark"] .thromboprophylaxis-matrix-table td {
  background: var(--bg-card, #1e1e1e);
  border-color: var(--border-color, #444);
}

[data-theme="dark"] .thromboprophylaxis-matrix-table td.highlight {
  background: rgba(217, 119, 87, 0.2);
}

[data-theme="dark"] .thromboprophylaxis-tree-node {
  background: var(--bg-sidebar-hover, #2a2a2a);
}

[data-theme="dark"] .thromboprophylaxis-tree-node.active {
  background: rgba(217, 119, 87, 0.15);
}

[data-theme="dark"] .thromboprophylaxis-strat-level {
  border-color: var(--border-color, #444);
}

[data-theme="dark"] .thromboprophylaxis-or-factor {
  background: var(--bg-sidebar-hover, #2a2a2a);
}

[data-theme="dark"] .thromboprophylaxis-or-factor-value {
  background: var(--bg-card, #1e1e1e);
}

[data-theme="dark"] .thromboprophylaxis-or-notice {
  background: rgba(234, 179, 8, 0.15);
  border-color: rgba(234, 179, 8, 0.4);
}

[data-theme="dark"] .thromboprophylaxis-or-result {
  background: var(--bg-sidebar-hover, #2a2a2a);
}

[data-theme="dark"] .thromboprophylaxis-result-section {
  border-color: var(--border-color, #444);
}

/* RCOG Reco table dark */
[data-theme="dark"] .thromboprophylaxis-rcog-reco-table {
  border-color: var(--border-color, #444);
}

[data-theme="dark"] .thromboprophylaxis-rcog-reco-header {
  background: var(--bg-sidebar-hover, #2a2a2a);
}

[data-theme="dark"] .thromboprophylaxis-rcog-reco-row {
  border-color: var(--border-color, #444);
}

[data-theme="dark"] .thromboprophylaxis-rcog-reco-row.active {
  background: rgba(217, 119, 87, 0.15);
}

/* Points section dark */
[data-theme="dark"] .thromboprophylaxis-points-category {
  background: var(--bg-sidebar-hover, #2a2a2a);
}

[data-theme="dark"] .thromboprophylaxis-points-category-title {
  border-color: var(--border-color, #444);
}

[data-theme="dark"] .thromboprophylaxis-points-row.active {
  background: rgba(217, 119, 87, 0.2);
}

[data-theme="dark"] .thromboprophylaxis-points-result {
  background: var(--bg-sidebar-hover, #2a2a2a);
}

[data-theme="dark"] .thromboprophylaxis-points-interp-table {
  background: var(--bg-card, #1e1e1e);
  border-color: var(--border-color, #444);
}

[data-theme="dark"] .thromboprophylaxis-points-interp-table h4 {
  background: var(--bg-sidebar-hover, #2a2a2a);
  border-color: var(--border-color, #444);
}

[data-theme="dark"] .thromboprophylaxis-points-interp-row {
  border-color: var(--border-color, #444);
}

[data-theme="dark"] .thromboprophylaxis-points-interp-row.active {
  background: rgba(217, 119, 87, 0.2);
}
