/* ZAHLEN, LESBARKEIT UND HARMONIEN

   Aus `farbrad.css` herausgelöst, damit keine Datei über
   300 Zeilen wächst. Inhalt unverändert. */

.fr-kanaele {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.fr-kanal {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fr-kanal label {
    font-size: .7rem;
    color: var(--glass-icon-color, rgba(255,255,255,.4));
    text-align: center;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.fr-kanal input {
    width: 100%;
    background: rgba(0, 0, 0, .3);
    border: none;
    border-radius: 6px;
    color: var(--glass-text-primary, #fff);
    padding: 6px;
    font-size: .8rem;
    text-align: center;
    outline: none;
}

.fr-zeile {
    display: flex;
    gap: 10px;
    align-items: center;
}

.fr-hexfeld {
    flex: 1;
    background: rgba(0, 0, 0, .3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.fr-hexfeld span {
    color: var(--glass-icon-color, rgba(255,255,255,.4));
    font-size: .9rem;
}

.fr-hexfeld input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--glass-text-primary, #fff);
    padding: 8px 0;
    font-size: .9rem;
    outline: none;
    font-family: monospace;
}

.fr-knopf {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, .1);
    color: var(--glass-text-primary, #fff);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s, color .2s;
}

.fr-knopf:hover {
    background: rgba(255, 255, 255, .2);
}

.fr-knopf.ist-kopiert {
    background: rgba(34, 197, 94, .2);
    color: #22c55e;
}

.fr-knopf.ist-kopiert .fr-nicht-kopiert,
.fr-knopf:not(.ist-kopiert) .fr-ist-kopiert {
    display: none;
}

.fr-trenner {
    border: none;
    border-top: 1px solid currentColor;
    opacity: .1;
    margin: 15px 0;
}

.fr-ueberschrift {
    font-size: .7rem;
    color: var(--glass-text-secondary, rgba(255,255,255,.5));
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fr-proben {
    display: flex;
    gap: 10px;
}

.fr-probe {
    flex: 1;
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.fr-probe .fr-aa {
    font-weight: 700;
    font-size: .9rem;
}

#fr-weiss .fr-aa {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

#fr-schwarz .fr-aa {
    color: #000;
}

.fr-marke {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.fr-abzeichen {
    color: #fff;
    font-size: .6rem;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 700;
    line-height: 1;
}

.fr-wert {
    font-size: .55rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
}

.fr-harmonien {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fr-harmonie {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 60px;
}

.fr-harmonie-name {
    font-size: .6rem;
    color: var(--glass-icon-color, rgba(255,255,255,.4));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fr-streifen {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    height: 24px;
}

.fr-feld {
    flex: 1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity .2s;
}

.fr-feld:hover {
    opacity: .8;
}

.farbe-zieht #fr-mitte {
    transition: none;
}

@media (max-width: 560px) {
    .fr-buehne {
        gap: 24px;
    }
}
