@import "allgemein.css";
@import "tabellen.css";

:root {
  --icon-arrow-K: "\25B6";  /* ▶ */
  --icon-arrow-G: "\25C0"   /* ◀ */
}

.pfeil_k::before {
    content: var(--icon-arrow-K);
    /* Weitere Styling */
    display: inline-block;
    margin-right: 8px;
    font-size: 1.1em;
}

.pfeil_g::before {
    content: var(--icon-arrow-G);
    /* Weitere Styling */
    display: inline-block;
    margin-right: 8px;
    font-size: 1.1em;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
}

.custom-radio input {
    display: none;                    /* Original verstecken */
}

.radio-circle {
    width: 24px;
    height: 24px;
    border: 3px solid #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.custom-radio input:checked + .radio-circle {
    border-color: #6366f1;
    background: #6366f1;
}

.radio-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s ease;
}

.custom-radio input:checked + .radio-circle::after {
    opacity: 1;
    transform: scale(1);
}

.pink {
    background-color: pink;
}

.lightgreen {
    background-color: lightgreen;
}

