/*
 * ====================================================================
 * PENALTY TABLE V2 - Mobile Version
 * ====================================================================
 * Vertikale Karten-Liste für optimale Mobile-UX
 */

/* Mobile Sort Buttons - gleicher Style wie Liga-Filter */
.mobile-sort.active {
    background-color: var(--fm-gold);
    border-color: var(--fm-gold);
    color: var(--fm-white);
}

.penalty-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.penalty-mobile-card {
    background: var(--fm-white);
    border: 1px solid var(--penalty-border);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: var(--penalty-shadow);
    transition: all 0.3s ease;
}

.penalty-mobile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-color: var(--fm-gold);
}

.penalty-mobile-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--fm-gold);
}

.penalty-mobile-rank {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--fm-gold);
    min-width: 2rem;
    text-align: center;
}

.penalty-mobile-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.penalty-mobile-team {
    font-weight: 600;
    flex: 1;
    font-size: 1rem;
    color: var(--fm-dark);
}

.penalty-mobile-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--penalty-border);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--fm-text-secondary);
    font-size: 0.875rem;
}

.stat-value {
    font-weight: 600;
    color: var(--fm-gold);
    font-size: 0.875rem;
}

.penalty-mobile-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--fm-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.penalty-mobile-link:hover {
    color: var(--fm-dark);
    text-decoration: underline;
}

/* DFB-Urteile Sektion */
.penalty-mobile-urteile {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--fm-gold);
}

.urteile-header {
    margin-bottom: 0.5rem;
}

.urteile-title {
    font-weight: 600;
    color: var(--fm-dark);
    font-size: 0.9rem;
}

.urteile-list,
.urteile-collapse {
    margin-bottom: 0.5rem;
}

.urteil-item {
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--penalty-border);
}

.urteil-item:last-child {
    border-bottom: none;
}

.urteil-item small {
    color: var(--fm-text-secondary);
}

.urteil-item strong {
    color: var(--fm-gold);
}

/* Toggle Button */
.urteile-toggle {
    font-size: 0.8rem;
    padding: 0.375rem;
    background: transparent;
    border-color: var(--fm-gold);
    color: var(--fm-gold);
}

.urteile-toggle:hover {
    background: var(--fm-gold);
    border-color: var(--fm-gold);
    color: var(--fm-white);
}

/* Smooth Animation für Collapse */
.urteile-collapse {
    transition: all 0.3s ease;
}