/* ============================================
   Global Styles - FC Oppenwehe II Team-App
   Gemeinsame Komponenten für alle Seiten
   ============================================ */

/* Theme Colors */
:root {
    --fco-primary: #b32d06;
    --fco-primary-dark: #8a2205;
    --fco-background: #f5f5f5;
    --fco-white: #ffffff;
    --fco-text: #333;
    --fco-text-light: #666;
    --fco-border: #e0e0e0;
    --fco-border-light: #eee;
    --fco-hover: #f8f9fa;
    --fco-danger: #dc3545;
    --fco-danger-hover: #c82333;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ============================================
   Sticky Header - Gemeinsamer Header für Unterseiten
   ============================================ */

.header {
    background: linear-gradient(135deg, #b32d06 0%, #8a2205 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 44px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.back-btn:active {
    transform: scale(0.98);
}

.logo-small {
    width: 40px;
    height: 40px;
}

.header h1 {
    font-size: 1.2em;
    color: #000000;
    flex: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .header h1 {
        font-size: 1.4em;
    }
}

/* Settings Button im Header */
.settings-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: auto;
}

.settings-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}
