/* Apple-Style Design System */
:root {
    --primary-blue: #007AFF;
    --primary-blue-dark: #0051D4;
    --secondary-gray: #8E8E93;
    --light-gray: #F2F2F7;
    --card-background: #FFFFFF;
    --border-light: #E5E5EA;
    --text-primary: #000000;
    --text-secondary: #6D6D70;
    --success-green: #34C759;
    --error-red: #FF3B30;
    --warning-orange: #FF9500;
    
    --border-radius: 10px;
    --border-radius-large: 16px;
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
    --shadow-elevated: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Reset und Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: var(--light-gray);
    margin: 0;
    padding: 0;
    height: 100%;
    /* Verhindert jegliche Standard-Browser-Abstände */
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', sans-serif;
    background: var(--light-gray);
    color: var(--text-primary);
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* iOS Vollbild-Modus für nahtlosen Hintergrund */
    min-height: 100vh;
    min-height: -webkit-fill-available;
    margin: 0;
    padding: 0;
    /* Entfernt jegliche Browser-Standard-Margins */
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden !important; /* H-Scroll strikt verhindern */
    max-width: 100vw;
    width: 100%;
    /* Verhindert das Verschieben des Layouts auf mobilen Geräten */
    touch-action: pan-y; /* Nur vertikales Scrollen zulassen */
    -webkit-user-select: none;
    user-select: none;
}

.app {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    background: var(--light-gray);
    margin: 0;
    /* iOS Safe Area Support - nur für Inhalt, nicht für Background */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    display: flex;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 8px;
}

.nav-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    color: var(--primary-blue);
    position: relative;
}

.nav-btn:hover {
    background: rgba(0, 122, 255, 0.08);
}

.nav-btn.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-subtle);
}

/* Views */
.view {
    display: none;
    flex: 1;
    padding: 24px;
}

.view.active {
    display: block;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 17px;
    font-weight: 400;
}

/* Cards/Sections */
.section {
    background: var(--card-background);
    border-radius: var(--border-radius-large);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.section h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Search Container */
.search-container {
    margin-bottom: 24px;
}

.search-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.search-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 16px;
    background: var(--card-background);
    transition: all 0.2s ease;
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--secondary-gray);
    pointer-events: none;
}

.clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-gray);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.clear-btn:hover {
    background: var(--text-secondary);
}

.search-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 0 4px;
}

#selected-count {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Kollegen List */
.kollegen-list {
    max-height: 500px;
    overflow-y: auto;
    border: none;
    border-radius: 0;
    background: transparent;
}

.kollege-card {
    background: var(--card-background);
    border: none;
    border-bottom: 1px solid var(--border-light);
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}

.kollege-card:first-child {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.kollege-card:last-child {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    border-bottom: none;
}

.kollege-card:hover {
    background: var(--light-gray);
}

.kollege-card.selected {
    background: rgba(0, 122, 255, 0.1);
    border-color: var(--primary-blue);
}

.kollege-info {
    flex: 1;
    text-align: left;
}

.kollege-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.kollege-room {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.selection-indicator {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    color: var(--primary-blue);
}

.kollege-card.selected .selection-indicator {
    background: var(--primary-blue);
    color: white;
}

/* Room Groups */
.room-group {
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    background: var(--card-background);
    overflow: hidden;
}

.room-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
}

.room-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.room-header h3::before {
    content: '🏠';
    font-size: 18px;
}

.room-kollegen {
    background: var(--card-background);
}

.room-kollegen .kollege-card {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border-light);
}

.room-kollegen .kollege-card:last-child {
    border-bottom: none;
}

.kollege-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.detail-item {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Buttons */
.btn-primary, .btn-secondary {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-elevated);
}

.btn-primary:disabled {
    background: var(--secondary-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--border-light);
    transform: translateY(-1px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 16px;
    background: var(--card-background);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Kollegen List Items (Management) */
.kollegen-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--card-background);
    border-radius: var(--border-radius);
    margin-bottom: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
}

.kollegen-info {
    flex: 1;
}

.kollegen-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.kollegen-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

.delete-btn {
    background: var(--error-red);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.delete-btn:hover {
    background: #D70015;
    transform: translateY(-1px);
}

/* Kollegen Actions */
.kollegen-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.edit-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.edit-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
}

/* Checklist Items */
.checklist-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--card-background);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
    box-shadow: var(--shadow-subtle);
}

.checklist-item:hover {
    background: var(--light-gray);
    transform: translateY(-1px);
}

.checklist-item.completed {
    background: rgba(52, 199, 89, 0.1);
    border-color: var(--success-green);
    opacity: 0.8;
}

.checklist-item.completed .checklist-text {
    text-decoration: line-through;
}

.checklist-checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    font-weight: 600;
    color: var(--primary-blue);
}

.checklist-item.completed .checklist-checkbox {
    background: var(--success-green);
    border-color: var(--success-green);
    color: white;
}

.checklist-text {
    flex: 1;
}

.room-number {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 2px;
}

.kollege-names {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Regal Styles */
.room-filter {
    margin-bottom: 24px;
}

.room-filter label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.room-filter select {
    width: 100%;
    max-width: 300px;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 16px;
    background: var(--card-background);
    font-family: inherit;
}

.regal-room {
    background: var(--card-background);
    border-radius: var(--border-radius-large);
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.regal-room h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.regal-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 16px;
    background: var(--light-gray);
}

.regal-slot {
    aspect-ratio: 1;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    background: var(--card-background);
    position: relative;
    min-height: 60px;
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 4px;
}

.regal-slot.occupied {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
}

.regal-slot.occupied:hover {
    background: rgba(0, 122, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.regal-slot.empty {
    background: var(--card-background);
    color: var(--secondary-gray);
    border-style: dashed;
}

.regal-slot.empty:hover {
    background: var(--light-gray);
}

.regal-slot-label {
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 10px;
    opacity: 0.6;
    font-weight: 400;
}

.regal-slot-name {
    font-weight: 600;
    line-height: 1.2;
    word-break: break-word;
}

.regal-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    font-size: 14px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.legend-occupied {
    background: rgba(0, 122, 255, 0.1);
    border-color: var(--primary-blue);
}

.legend-empty {
    background: var(--card-background);
    border-style: dashed;
}

.regal-info {
    text-align: center;
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 16px;
}

/* Loading States */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: var(--text-primary);
    font-size: 16px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .nav {
        padding: 12px 16px;
        gap: 4px;
    }
    
    .nav-btn {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .view {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .regal-grid {
        gap: 4px;
        padding: 12px;
        max-width: 100%;
    }
    
    .regal-slot {
        font-size: 10px;
        min-height: 50px;
        padding: 2px;
    }
    
    .regal-legend {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .regal-room {
        padding: 16px;
    }
    
    .search-wrapper input {
        padding: 12px 14px 12px 40px;
    }
    
    /* iPhone-spezifische Optimierungen */
    .logo {
        width: 120px !important;
        margin: 10px auto 10px !important;
    }
    
    .section {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .section h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .kollegen-list {
        max-height: 70vh; /* Mehr sichtbare Einträge auf Mobile */
    }
    
    .kollege-card {
        padding: 12px 16px;
        min-height: 56px;
    }
    
    .kollege-name {
        font-size: 15px;
    }
    
    .kollege-room {
        font-size: 13px;
    }
    
    .search-info {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 16px;
        font-size: 15px;
        margin-bottom: 6px;
        margin-top: 8px;
    }
    
    .view {
        padding: 12px 12px 0;
    }
}

/* iPhone Portrait spezifische Optimierungen */
@media (max-width: 390px) and (max-height: 844px) {
    .container {
        padding: 0 12px;
    }
    
    .logo {
        width: 180px !important;
        margin: 8px auto 8px !important;
    }
    
    .section {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .section h2 {
        font-size: 16px;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .kollegen-list {
        max-height: 65vh; /* Mehr sichtbare Einträge auf sehr kleinen iPhones */
        border-radius: 8px;
    }
    
    .kollege-card {
        padding: 10px 12px;
        min-height: 50px;
    }
    
    .search-container {
        margin-bottom: 12px;
    }
    
    .search-wrapper input {
        padding: 10px 12px 10px 36px;
        font-size: 15px;
    }
    
    .search-icon {
        left: 12px;
        font-size: 14px;
    }
    
    .btn-primary {
        position: sticky;
        bottom: 0;
        background: var(--primary-blue);
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
        border-radius: var(--border-radius);
        margin-top: 12px;
        z-index: 10;
    }
}

/* Detaillierte Checkliste Styles */
.checklist-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.back-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.back-btn:hover {
    background: var(--border-light);
    transform: translateY(-50%) translateY(-1px);
}

/* Mobile Optimierungen für Back Button */
@media (max-width: 480px) {
    .checklist-header {
        text-align: left;
        margin-bottom: 24px;
        position: static;
    }
    
    .back-btn {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 16px;
        padding: 10px 16px;
        font-size: 15px;
        background: var(--primary-blue);
        color: white;
        border: none;
        box-shadow: var(--shadow-subtle);
    }
    
    .back-btn:hover {
        transform: none;
        background: var(--primary-blue-dark);
    }
}

/* iPhone spezifische Anpassungen */
@media (max-width: 390px) and (max-height: 844px) {
    .checklist-header {
        padding-top: 8px;
    }
    
    /* Optimierung für iPhone mit Safe Areas */
    .view {
        padding: 12px 12px 0;
    }
    
    /* Zusätzliche iOS-Vollbild-Optimierung */
    html, body {
        background: var(--light-gray) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .app {
        background: var(--light-gray) !important;
        margin: 0 !important;
    }
    
    .logo {
        margin-top: env(safe-area-inset-top, 8px) !important;
    }
}

.checklist-progress {
    background: var(--card-background);
    border-radius: var(--border-radius-large);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--success-green) 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

#progress-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.visual-room-card {
    background: var(--card-background);
    border-radius: var(--border-radius-large);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.visual-room-card.completed {
    background: rgba(52, 199, 89, 0.05);
    border-color: var(--success-green);
}

.room-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.room-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.room-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-status.pending {
    background: rgba(255, 149, 0, 0.1);
    color: var(--warning-orange);
}

.room-status.completed {
    background: rgba(52, 199, 89, 0.1);
    color: var(--success-green);
}

.mini-regal {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    max-width: 400px;
    margin: 0 auto 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 12px;
    background: var(--light-gray);
}

.mini-slot {
    aspect-ratio: 1;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    background: var(--card-background);
    position: relative;
    min-height: 32px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
    padding: 2px;
}

.mini-slot.target {
    background: rgba(0, 122, 255, 0.2);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.3);
    animation: pulse 2s infinite;
}

.mini-slot.collected {
    background: rgba(52, 199, 89, 0.2);
    border-color: var(--success-green);
    color: var(--success-green);
}

.mini-slot.empty {
    background: var(--card-background);
    color: var(--secondary-gray);
    border-style: dashed;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.6);
    }
}

.colleague-list {
    margin-top: 16px;
}

.colleague-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
}

.colleague-item:hover {
    background: var(--border-light);
}

.colleague-item.collected {
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid var(--success-green);
}

.colleague-item.collected .colleague-info {
    opacity: 0.8;
}

.colleague-info {
    flex: 1;
}

.colleague-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.colleague-position {
    font-size: 12px;
    color: var(--text-secondary);
}

.collect-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 14px;
}

.colleague-item.collected .collect-checkbox {
    background: var(--success-green);
    border-color: var(--success-green);
    color: white;
}

/* Neue Kollegen-Checkliste Styles */
.section-title {
    margin: 32px 0 20px 0;
    text-align: center;
}

.section-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.section-title .subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.colleagues-summary {
    background: var(--card-background);
    border-radius: var(--border-radius-large);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.summary-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
}

.colleagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.colleague-card {
    background: var(--card-background);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-large);
    padding: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
}

.colleague-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-hover);
}

.colleague-card.completed {
    background: rgba(52, 199, 89, 0.05);
    border-color: var(--success-green);
}

.colleague-card.completed:hover {
    border-color: var(--success-green);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.2);
}

.colleague-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.colleague-card .colleague-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.colleague-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 14px;
}

.colleague-card.completed .colleague-checkbox {
    background: var(--success-green);
    border-color: var(--success-green);
    color: white;
}

.colleague-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.colleague-room {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.colleague-positions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.position-item {
    background: var(--light-gray);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.colleague-card.completed .position-item {
    background: rgba(52, 199, 89, 0.1);
    color: var(--success-green);
}

.checklist-actions {
    margin-top: 32px;
    text-align: center;
}

.checklist-actions .btn-primary,
.checklist-actions .btn-secondary {
    max-width: 300px;
    margin: 0 auto 8px;
}

/* Responsive Design für Kollegen-Grid */
@media (max-width: 768px) {
    .colleagues-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .colleague-card {
        padding: 12px;
    }
    
    .colleague-positions {
        gap: 8px;
    }
    
    .summary-stats {
        gap: 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .colleagues-summary {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .section-title {
        margin: 24px 0 16px 0;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .colleague-positions {
        flex-direction: column;
        gap: 4px;
    }
    
    .position-item {
        align-self: flex-start;
    }
}

/* Touch Enhancements */
@media (hover: none) and (pointer: coarse) {
    .kollege-card, .checklist-item, .btn-primary, .btn-secondary, .colleague-card {
        min-height: 48px;
    }
    
    .kollege-card {
        min-height: 64px;
    }
    
    .colleague-card {
        min-height: 80px;
        padding: 16px;
    }
    
    .regal-slot {
        min-height: 56px;
    }
    
    .nav-btn {
        min-height: 44px;
    }
    
    .colleague-item {
        min-height: 52px;
    }
    
    .back-btn {
        min-height: 40px;
    }
} 

/* Passwort-Modal Styles */
.password-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
    /* iOS Safe Area Support */
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

.password-content {
    background: var(--card-background);
    border-radius: var(--border-radius-large);
    padding: 32px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--border-light);
    text-align: center;
}

.password-header {
    margin-bottom: 24px;
}

.password-logo {
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.password-header h2 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
}

.password-header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 0;
}

.password-form {
    width: 100%;
}

.password-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.password-input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 16px;
    background: var(--card-background);
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: center;
}

.password-input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.password-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-subtle);
}

.password-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-elevated);
}

.password-btn:active {
    transform: translateY(0);
}

.password-error {
    color: var(--error-red);
    font-size: 14px;
    padding: 8px 12px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: var(--border-radius);
    margin-top: 8px;
    text-align: center;
}

.password-error.hidden {
    display: none;
}

/* App wird versteckt bis Passwort korrekt */
.app.password-protected {
    display: none;
}

/* Shake-Animation für falsches Passwort */
@keyframes shake {
    0%, 20%, 40%, 60%, 80%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-4px);
    }
}

/* Mobile Optimierungen für Passwort-Modal */
@media (max-width: 480px) {
    .password-modal {
        padding: 16px;
        /* Safe Area Support */
        padding-top: calc(16px + env(safe-area-inset-top, 0px));
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
    
    .password-content {
        padding: 24px;
    }
    
    .password-logo {
        width: 100px;
    }
    
    .password-header h2 {
        font-size: 20px;
    }
    
    .password-header p {
        font-size: 15px;
    }
    
    .password-input-group input {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .password-btn {
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* Schuhschrank-Styles */
.schuh-room {
    background: var(--card-background);
    border-radius: var(--border-radius-large);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.schuh-room h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.schuh-bereich {
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.schuh-bereich h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-left: 4px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.schuh-grid {
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
}

/* Bereichsspezifische Grids */
.schuh-grid.schuh-bereich-1 {
    grid-template-columns: repeat(5, 54px); /* 5x6 - feste Slot-Breite */
    justify-content: start;
}

.schuh-grid.schuh-bereich-2 {
    grid-template-columns: repeat(3, 54px); /* 3x8 - gleiche Slot-Breite */
    justify-content: start;
}

.schuh-grid.schuh-bereich-3 {
    grid-template-columns: repeat(5, 54px); /* 5x8 - gleiche Slot-Breite */
    justify-content: start;
}

.schuh-grid.schuh-bereich-4 {
    grid-template-columns: repeat(2, 54px); /* 2x8 - gleiche Slot-Breite */
    justify-content: start;
}

.schuh-slot {
    aspect-ratio: 1;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 4px;
    min-height: 32px;
}

.schuh-slot.occupied {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border-color: #FF6B35;
}

.schuh-slot.occupied:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.schuh-slot.empty {
    background: var(--light-gray);
    color: var(--text-secondary);
    border-color: var(--border-light);
}

.schuh-slot.empty:hover {
    background: #e9ecef;
}

.schuh-slot-label {
    font-size: 9px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 2px;
}

.schuh-slot-name {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.schuh-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    justify-content: center;
}

.schuh-info {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Anpassungen für Schuhschränke */
@media (max-width: 768px) {
    .schuh-grid {
        gap: 3px;
    }
    
    .schuh-grid.schuh-bereich-1 {
        grid-template-columns: repeat(5, 48px);
    }
    
    .schuh-grid.schuh-bereich-2 {
        grid-template-columns: repeat(3, 48px);
    }
    
    .schuh-grid.schuh-bereich-3 {
        grid-template-columns: repeat(5, 48px);
    }
    
    .schuh-grid.schuh-bereich-4 {
        grid-template-columns: repeat(2, 48px);
    }
    
    .schuh-slot {
        min-height: 28px;
        font-size: 10px;
    }
    
    .schuh-slot-label {
        font-size: 8px;
    }
    
    .schuh-slot-name {
        font-size: 9px;
    }
    
    .schuh-legend {
        gap: 15px;
    }
    
    .schuh-room {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .schuh-grid.schuh-bereich-1,
    .schuh-grid.schuh-bereich-3 {
        grid-template-columns: repeat(5, 44px);
        gap: 2px;
    }
    
    .schuh-grid.schuh-bereich-2 {
        grid-template-columns: repeat(3, 44px);
        gap: 2px;
    }
    
    .schuh-grid.schuh-bereich-4 {
        grid-template-columns: repeat(2, 44px);
        gap: 2px;
    }
    
    .schuh-slot {
        min-height: 32px;
        font-size: 10px;
        padding: 2px;
    }
    
    .schuh-slot-label {
        font-size: 7px;
    }
    
    .schuh-slot-name {
        font-size: 8px;
    }
    
    .schuh-room {
        margin-bottom: 16px;
        padding: 12px;
    }
    
    .schuh-legend {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

/* Checklisten-Erweiterung für Schuhschränke */
.room-grids {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.grid-section {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    padding: 12px;
    border: 1px solid var(--border-light);
}

.grid-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-left: 4px;
}

/* Mini-Schuhschrank-Container */
.mini-schuh-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-schuh-bereiche-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-schuh-bereich {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 8px;
    background: var(--light-gray);
}

.bereich-label {
    color: var(--text-secondary);
    font-size: 8px;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: center;
    padding: 0;
}

.mini-schuh-grid {
    display: grid;
    gap: 4px;
    margin-bottom: 0;
    justify-content: start;
}

/* Bereichsspezifische Mini-Grids mit festen Slot-Größen */
.mini-schuh-grid.bereich-1 {
    grid-template-columns: repeat(5, 32px);
}

.mini-schuh-grid.bereich-2 {
    grid-template-columns: repeat(3, 32px);
}

.mini-schuh-grid.bereich-3 {
    grid-template-columns: repeat(5, 32px);
}

.mini-schuh-grid.bereich-4 {
    grid-template-columns: repeat(2, 32px);
}

.mini-schuh-slot {
    aspect-ratio: 1;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    background: var(--card-background);
    position: relative;
    min-height: 32px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
    padding: 2px;
}

.mini-schuh-slot.target {
    background: rgba(255, 107, 53, 0.2);
    border-color: #FF6B35;
    color: #FF6B35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.mini-schuh-slot.target:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.mini-schuh-slot.collected {
    background: rgba(52, 199, 89, 0.2);
    border-color: var(--success-green);
    color: var(--success-green);
}

.mini-schuh-slot.empty {
    background: var(--card-background);
    color: var(--secondary-gray);
    border-style: dashed;
    cursor: default;
}

.mini-schuh-slot-label {
    font-size: 8px;
    opacity: 0.6;
}

.no-shoes {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 20px;
    font-style: italic;
}

/* Mobile Anpassungen für Grid-Bereiche */
@media (max-width: 768px) {
    .room-grids {
        gap: 16px;
    }
    
    .grid-section {
        padding: 12px;
    }
    
    .grid-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .mini-schuh-bereiche-container {
        gap: 6px;
    }
    
    .mini-schuh-bereich {
        padding: 6px;
    }
    
    .bereich-label {
        font-size: 7px;
        margin-bottom: 4px;
    }
    
    .mini-schuh-grid {
        gap: 3px;
    }
    
    .mini-schuh-grid.bereich-1 {
        grid-template-columns: repeat(5, 28px);
    }
    
    .mini-schuh-grid.bereich-2 {
        grid-template-columns: repeat(3, 28px);
    }
    
    .mini-schuh-grid.bereich-3 {
        grid-template-columns: repeat(5, 28px);
    }
    
    .mini-schuh-grid.bereich-4 {
        grid-template-columns: repeat(2, 28px);
    }
    
    .mini-schuh-slot {
        min-height: 28px;
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .room-grids {
        gap: 12px;
    }
    
    .grid-section {
        padding: 8px;
    }
    
    .mini-schuh-bereiche-container {
        gap: 4px;
    }
    
    .mini-schuh-bereich {
        padding: 4px;
    }
    
    .bereich-label {
        font-size: 6px;
        margin-bottom: 3px;
    }
    
    .mini-schuh-grid {
        gap: 2px;
    }
    
    .mini-schuh-grid.bereich-1 {
        grid-template-columns: repeat(5, 32px);
    }
    
    .mini-schuh-grid.bereich-2 {
        grid-template-columns: repeat(3, 32px);
    }
    
    .mini-schuh-grid.bereich-3 {
        grid-template-columns: repeat(5, 32px);
    }
    
    .mini-schuh-grid.bereich-4 {
        grid-template-columns: repeat(2, 32px);
    }
    
    .mini-schuh-slot {
        min-height: 32px;
        font-size: 10px;
    }
    
    .mini-schuh-slot-label {
        font-size: 8px;
    }
    
    .no-shoes {
        font-size: 12px;
        padding: 8px;
    }
} 

/* RTW Selection Styles */
.rtw-header {
    text-align: center;
    margin-bottom: 30px;
}

.rtw-header h2 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.rtw-header p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.rtw-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.rtw-info-item {
    background: var(--card-background);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
    font-size: 14px;
}

.rtw-colleagues-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.rtw-colleague-card {
    background: var(--card-background);
    border-radius: var(--border-radius-large);
    padding: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.rtw-colleague-card:hover {
    box-shadow: var(--shadow-elevated);
}

.colleague-info {
    flex: 1;
}

.colleague-info .colleague-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.colleague-info .colleague-room {
    font-size: 14px;
    color: var(--text-secondary);
}

.rtw-selection-buttons {
    display: flex;
    gap: 12px;
}

.rtw-btn {
    background: var(--light-gray);
    border: 2px solid var(--border-light);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rtw-btn small {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-secondary);
}

.rtw-btn:hover {
    background: #E5E5EA;
    border-color: var(--secondary-gray);
}

.rtw-btn.selected {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.rtw-btn.selected small {
    color: rgba(255, 255, 255, 0.8);
}

.rtw-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}

.rtw-actions .btn-secondary,
.rtw-actions .btn-primary {
    min-width: 160px;
}

/* RTW info in colleague cards */
.colleague-rtw {
    font-size: 13px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 4px;
}

.shoes-not-needed {
    color: var(--text-secondary) !important;
    font-style: italic;
    opacity: 0.7;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .rtw-info {
        flex-direction: column;
        align-items: center;
    }
    
    .rtw-colleague-card {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .rtw-selection-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .rtw-btn {
        flex: 1;
        min-width: auto;
    }
    
    .rtw-actions {
        flex-direction: column;
    }
    
    .rtw-actions .btn-secondary,
    .rtw-actions .btn-primary {
        width: 100%;
    }
} 

.mini-slot, .mini-schuh-slot {
    position: relative;
}

.name-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 10px;
    padding: 4px 6px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 5;
    margin-bottom: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.name-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0,0,0,0.85) transparent transparent transparent;
} 

@media (max-width: 768px) {
    html, body, .app, .view, .container, .section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    /* Die Auswahl-Liste soll mehr Platz erhalten und vertikal scrollen */
    #checklist-view .kollegen-list {
        max-height: 70vh;
        overflow-y: auto;
    }
} 

/* Beta pill under logo */
.beta-pill {
    display: block;
    width: fit-content;
    margin: -6px auto 10px;
    padding: 2px 10px;
    font-size: 11px;
    line-height: 1.7;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    border-radius: 9999px;
    box-shadow: var(--shadow-subtle);
} 
