/* Star-Wars-FFG-Wuerfel-/Ergebnissymbole, gerendert aus Inline-XML-Tags in Talenten,
   z. B. <boost>1</boost>, <success>1</success>, <probe>...</probe>. Siehe core/GameSymbols.php. */

/* Wuerfel-Icons: kommen in den Wurfpool. Formsprache: Raute = W8-Familie
   (Faehigkeit/Schwierigkeit), Hexagon = W12-Familie (Profi/Herausforderung),
   Quadrat = W6 (Bonus/Rueckschlag), Kreis = zweiseitiger Machtwuerfel.
   .die/.die-ability/.die-proficiency wurden aus der Fertigkeiten-Wuerfelpool-Anzeige
   hierher verschoben (unveraendert), damit Talent-Texte dieselben Icons nutzen koennen. */
.die {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 1px;
    vertical-align: middle;
}
.die-ability {
    background: #4caf50;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.die-difficulty {
    background: #9d7bc7;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.die-proficiency {
    background: #d4af37;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.die-challenge {
    background: #c0392b;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.die-boost {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    background: #5dc9ef;
}
.die-setback {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    background: #4a4a4a;
    border: 1px solid #6b6459;
}
.die-force {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f2e9d4 50%, #121212 50%);
    border: 1px solid #6b6459;
}

/* Ergebnis-Symbole: stehen fuer Wurfresultate, kein eigener Wuerfel. */
.pip {
    width: 14px;
    height: 14px;
    margin: 1px;
    vertical-align: middle;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    line-height: 1;
}
.pip-success { background: #4caf50; color: #0e1f0f; }
.pip-advantage { background: #5dc9ef; color: #0d2530; }
.pip-triumph { background: #ffcf5c; color: #3a2a00; font-size: 0.6rem; }
.pip-threat { background: #c0392b; color: #2a0b06; }
.pip-despair { background: #0c0c0c; color: #c0392b; border: 1px solid #c0392b; }
.pip-failure { background: transparent; color: #8a8478; border: 1px solid #8a8478; }
.pip-light { background: #f2e9d4; border: 1px solid #a89f8e; }
.pip-dark { background: #121212; border: 1px solid #6b6459; }
.pip-forcepoint { background: linear-gradient(90deg, #f2e9d4 50%, #121212 50%); border: 1px solid #6b6459; }

/* Textreferenz auf eine Fertigkeitsprobe, z. B. <probe>Medizin-Probe</probe>. */
.probe-ref {
    color: #d4af37;
    font-style: italic;
}
