/* ======= Grid für kompakte Stammhörer ======= */
.st-hoerer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

/* ======= Einzelne Karte ======= */
.st-card {
    background-color: #313335;
    color: #fff;
    width: 140px;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    font-size: 0.85em;
}

.st-card:hover {
    transform: scale(1.05);
}

/* ======= Avatar ======= */
.st-card img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-bottom: 6px;
}

/* ======= Online Status ======= */
.st-online {
    font-weight: bold;
    font-size: 0.75em;
    margin: 4px 0;
}

/* ======= Levelbox ======= */
.st-level-box {
    margin-top: 6px;
}

.st-badge {
    padding: 3px 6px; 
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 0.75em;
}

.st-badge-title {
    font-size: 0.7em;
    margin-bottom: 3px;
}

.st-progress {
    background-color: #555;
    border-radius: 4px;
    height: 6px;
    width: 100%;
    margin-bottom: 3px;
    overflow: hidden;
}

.st-progress-inner {
    height: 100%;
    border-radius: 4px;
    width: 0; /* Startwert für Animation */
    animation: grow 1.2s forwards; /* Animation */
}

/* Animation für Fortschrittsbalken */
@keyframes grow {
    from { width: 0; }
    to { width: var(--progress); }
}

.st-days {
    font-size: 0.65em;
    margin-bottom: 5px;
}

/* ======= Buttons ======= */
.st-btn {
    display: inline-block;
    padding: 3px 6px;
    background-color: #00B140;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75em;
    transition: background-color 0.3s;
}

.st-btn:hover {
    background-color: #00932e;
}

/* Admin-Löschen-Button */
.st-btn-del {
    background-color: #ff3333;
}

.st-btn-del:hover {
    background-color: #cc0000;
}

