/* ============================================================
   PLAYER UI – NUR PLAYER-SPEZIFISCHE STYLES
   KEIN Layout, KEINE Farben, KEIN Theme
============================================================ */

/* -----------------------------
   Controls / Toolbars
----------------------------- */

#controlsShell{
  position: fixed;
  top: calc(var(--header-height) + 15px);
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--toolbar-bg);
  transition: transform 0.25s ease;
}

#controlHandle{
  position: absolute;
  top: 2;
  right: -1px;
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--fg);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}


#controlsShell.collapsed #audioToolbar{
  display: none;
}

/* Haupt-Toolbar */
.toolbar{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  background: var(--toolbar-bg);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--toolbar-border);
}

/* SVG Audio Toolbar */
.audio-toolbar-center{
  position: relative;   /* ⬅️ WICHTIG */
  padding-top: 6px;
  justify-content: center;
  gap: 12px;
}


/* -----------------------------
   Buttons / Selects
----------------------------- */

button,
select{
  font: inherit;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--button-border);
  background: var(--button-bg);
  color: var(--fg);
  cursor: pointer;
}

button:hover,
select:hover{
  border-color: var(--accent);
}

button:disabled{
  opacity: 0.6;
  cursor: default;
}

/* -----------------------------
   Player Navigation
----------------------------- */

.svgGroup{
  display: flex;
  align-items: center;
  gap: 4px;
}

.svgIcon{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.svgGroup select{
  min-width: 70px;
}

.mystContainer{
  display: flex;
  align-items: center;
  gap: 4px;
}

.mystBtn{
  border-radius: 50%;
  padding: 2px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mystBtn svg{
  display: block;
}

.mystBtn:hover{
  background: var(--hover-bg);
  border-color: var(--accent);
}

/* -----------------------------
   Info Pills
----------------------------- */

.info{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 14px;
}

.pill{
  display: inline-block;
  background: var(--accent-soft);
  color: var(--fg);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.9rem;
}

/* -----------------------------
   Content Highlighting
----------------------------- */

.active-block > .card,
.card.active-block{
  background: var(--highlight) !important;
  box-shadow: inset 0 0 0 3px var(--highlight-border);
  transition: background-color 0.25s ease;
}

.active-text{
  background: rgba(255, 230, 150, 0.35);
  box-shadow: inset 0 0 0 2px rgba(255, 200, 80, 0.85);
  border-radius: 6px;
  padding: 2px 6px;
}

/* -----------------------------
   Player Footer (nur im Player!)
----------------------------- */

.footer{
  text-align: center;
  font-size: 0.9rem;
  color: var(--footer-text);
  margin: 16px 0 6px;
}

/* -----------------------------
   Scroll Anchors
----------------------------- */

.decade{
  scroll-margin-top: var(--header-height);
}

/* ------------------------------
    Divider
--------------------------------*/    

.divider{
  height: 1px;
  background: var(--divider-color);
  margin: 14px 0;
}

.hr{
  border: none;
  border-top: 1px solid var(--divider-color);
  margin: 10px 0 8px;
}

/* -----------------------------
   Gebetsblöcke (Cards)
----------------------------- */

.card{ 
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}
