/* Funkrunde-Planer CSS */
/* Dieses File ist optional - CSS ist auch in base.html inline */

:root {
    --bg-color: #f5f5f5;
    --card-bg: #ffffff;
    --accent: #2e7d32;
    --accent-hover: #1b5e20;
    --text: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
    --success: #4caf50;
    --error: #d32f2f;
}

/* Gesprächs-Thema Badge */
.thema-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 0.3rem 0;
    display: inline-block;
}

/* Checkbox für "Sicher dabei" */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: var(--bg-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.checkbox-group .form-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.checkbox-group .checkbox-label {
    font-weight: 600;
    cursor: pointer;
    margin: 0;
}

.checkbox-group .helptext {
    width: 100%;
    margin: 0.3rem 0 0 0;
    font-size: 0.85rem;
}

/* Teilnehmer Status Icons */
.status-sicher, .status-vielleicht {
    margin-right: 0.3rem;
}

.teilnehmer-summary {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.sicher-count {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Teilnehmer Badges in Liste */
.teilnehmer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.3rem;
}

.badge-sicher {
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
}

/* Auth Cards */
.auth-card {
    max-width: 400px;
    margin: 0 auto;
}

.profil-info {
    background: var(--bg-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.profil-info p {
    margin: 0.5rem 0;
}

/* Teilnahmen Liste im Profil */
.teilnahmen-liste {
    list-style: none;
    padding: 0;
}

.teilnahmen-liste li {
    margin-bottom: 0.5rem;
}

.teilnahmen-liste a {
    display: block;
    padding: 0.8rem;
    background: var(--bg-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
}

.teilnahmen-liste a:hover {
    background: var(--border);
}

.teilnahmen-liste .datum {
    font-size: 0.85rem;
    color: var(--text-light);
}

.teilnahmen-liste .titel {
    font-weight: 600;
    margin: 0.2rem 0;
}

.teilnahmen-liste.vergangen {
    opacity: 0.7;
}

/* Klickbare Rufzeichen in Teilnehmerliste */
.rufzeichen-link {
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
    padding: 0.15rem 0.3rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.rufzeichen-link:hover {
    background: var(--accent);
    color: white;
}

.rufzeichen-link.is-member {
    background: #e3f2fd;
    color: #1565c0;
}

.rufzeichen-link.is-member:hover {
    background: #1565c0;
    color: white;
}

.member-badge {
    font-size: 0.75rem;
    opacity: 0.8;
}

.teilnehmer-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

* { {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-color);
    min-height: 100vh;
}
