.event-badge {
    color: #0f172a !important;
    background: #e2e8f0 !important;
    border: 1px solid #cbd5e1 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    max-width: 100%;
    line-height: 1.3;
}

.event-meta-label {
    color: #0f172a !important;
}

.team-filter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.team-search-group {
    flex: 1 1 320px;
}

.team-selector select {
    width: 100%;
    min-height: 44px;
}

.team-filter-card .team-filter-label {
    margin-bottom: 8px;
    display: block;
}

.team-search-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    font-size: 13px;
    font-weight: 600;
    background: var(--white);
    color: var(--navy);
    transition: all var(--transition-fast);
}

.team-search-input:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.team-logo-shell,
.team-logo-frame {
    position: relative;
}

.team-logo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-shell .team-logo-placeholder {
    font-size: 44px;
}

.team-logo-frame .team-logo-placeholder {
    font-size: 32px;
}

/* Participation Table Styles */
.participation-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.participation-table-container {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.participation-row {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

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

.participation-row.is-link:hover {
    background-color: #f8fafc;
    transform: translateX(4px);
}

.participation-event-info {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 16px;
}

.participation-event-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px;
}

.participation-event-details {
    display: flex;
    flex-direction: column;
}

.participation-event-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
    margin-bottom: 2px;
}

.participation-event-category {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-pill-small {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.status-official { background: #dcfce7; color: #166534; }
.status-history { background: #f1f5f9; color: #64748b; }

.participation-meta {
    display: flex;
    gap: 32px;
    align-items: center;
}

.participation-meta-item {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.participation-meta-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 4px;
    font-weight: 700;
}

.participation-meta-value {
    font-size: 13px;
    color: #334155;
    font-weight: 600;
}

.participation-arrow {
    color: #cbd5e1;
    margin-left: 16px;
    transition: transform 0.2s ease;
}

.participation-row.is-link:hover .participation-arrow {
    color: #2563eb;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .participation-meta {
        display: none;
    }
    .participation-row {
        padding: 12px 16px;
    }
}
