/* Flikar — utbildningsflikar ovanpå orange kortet */
.flikar-rubriker {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: none;
  margin-bottom: 0;
}

.flik-rubrik {
  padding: 12px 20px;
  cursor: pointer;
  border: none;
  border-bottom: 3px solid transparent;
  color: #888;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
  background: none;
}

.flik-rubrik:hover:not(.aktiv) {
  color: #555;
  background: rgba(255, 160, 71, 0.08);
}

.flik-rubrik.aktiv {
  background: #FFA047;
  color: white;
  border-bottom-color: #FFA047;
  border-radius: 12px 12px 0 0;
}

.flik-innehall {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.flik-innehall.synlig {
  opacity: 1;
}

.forberedelse-block {
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.forberedelse-block.synlig {
  opacity: 1;
}

/* Historik-block */
.historik-block {
  padding: 32px 24px;
  background: #f5f3ee;
  border-radius: 12px;
  margin-bottom: 14px;
}

.historik-rubrik {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: #2C2A27;
  margin: 0 0 24px 0;
}

.historik-rad {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.historik-rad:last-child {
  border-bottom: none;
}

.historik-titel {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2C2A27;
  margin-bottom: 4px;
}

.historik-datum {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #6b6b6b;
}

.historik-tom {
  font-size: 14px;
  color: #6b6b6b;
  font-style: italic;
}
