/* ===== WALSRODE AKTUELL - PROFESSIONELLES DESIGN SYSTEM ===== */

/* ===== CSS VARIABLEN - CORPORATE DESIGN ===== */
:root {
    /* Hauptfarben - Walsrode Corporate Identity */
    --primary-blue: #2c5aa0;
    --primary-blue-light: #4a7bc8;
    --primary-blue-dark: #1e3f73;
    
    /* Akzentfarben */
    --accent-gold: #d4a574;
    --accent-gold-light: #e6c199;
    --accent-gold-dark: #b8904f;
    
    /* Neutrale Farben */
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    
    /* Hintergründe */
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-accent: #edf2f7;
    
    /* Status Farben */
    --success: #48bb78;
    --warning: #ed8936;
    --error: #f56565;
    --info: #4299e1;
    
    /* Schatten */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    
    /* Abstände */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ===== RESET & BASE STYLES ===== */

/* ===== WEISSE SCHRIFT NUR AUF BLAUEN/DUNKLEN HINTERGRÜNDEN ===== */
.bg-primary,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-primary p,
.bg-primary .card-title,
.bg-primary .card-text,
.card-header.bg-primary,
.card-header.bg-primary h1,
.card-header.bg-primary h2,
.card-header.bg-primary h3,
.card-header.bg-primary h4,
.card-header.bg-primary h5,
.card-header.bg-primary h6,
.card-header.bg-primary .card-title,
.bg-gradient,
.bg-gradient h1,
.bg-gradient h2,
.bg-gradient h3,
.bg-gradient h4,
.bg-gradient h5,
.bg-gradient h6,
.bg-gradient p,
.bg-gradient .card-title,
.bg-gradient .card-text,
.bg-blue,
.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue h5,
.bg-blue h6,
.bg-blue p {
    color: white !important;
}

/* Card-Header mit Gradient/Farbe → weiße Schrift (HÖCHSTE PRIORITÄT!) */
.card-header[style*="background"] h1,
.card-header[style*="background"] h2,
.card-header[style*="background"] h3,
.card-header[style*="background"] h4,
.card-header[style*="background"] h5,
.card-header[style*="background"] h6,
.card-header[style*="background"] p,
.card-header[style*="background"] .card-title,
.card-header[style*="background"] .text-white,
.card-header[style*="linear-gradient"] *,
.card-header[style*="linear-gradient"] h3 {
    color: white !important;
}

/* WICHTIG: Weißer Hintergrund (.card-body) behält dunkle Schrift */
.card-body,
.card-body > *:not(.card-header),
.card-body p,
.card-body li,
.card-body div:not(.card-header),
.card-body span,
[style*="background-color: white"] *:not(.card-header *),
[style*="background-color:#ffffff"] *:not(.card-header *) {
    color: var(--text-primary) !important;
}

/* ===== BENUTZER-NAVIGATION ===== */
.user-info {
    text-align: left;
    line-height: 1.2;
}

.user-name {
    font-size: 0.9rem;
    margin-bottom: 1px;
}

.user-email {
    font-size: 0.75rem;
    display: block;
}

.dropdown-header strong {
    font-size: 1rem;
}

.dropdown-menu {
    min-width: 250px;
    background-color: white !important;
}

/* Dropdown-Menu Komplett-Überschreibung */
.navbar .dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid rgba(0,0,0,.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
}

.navbar .dropdown-menu .dropdown-item {
    color: #212529 !important;
    background-color: transparent !important;
    padding: 0.5rem 1rem !important;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background-color: #e9ecef !important;
    color: #16181b !important;
}

.navbar .dropdown-menu .dropdown-header {
    color: #6c757d !important;
    background-color: transparent !important;
    padding: 0.5rem 1rem !important;
}

.navbar .dropdown-menu .dropdown-header strong {
    color: #212529 !important;
}

.navbar .dropdown-menu .dropdown-divider {
    border-color: #dee2e6 !important;
    margin: 0.5rem 0 !important;
}

.navbar .dropdown-menu .dropdown-item.text-danger {
    color: #dc3545 !important;
}

.navbar .dropdown-menu .dropdown-item.text-danger:hover {
    background-color: #f8d7da !important;
    color: #721c24 !important;
}

.navbar .dropdown-menu small.text-muted {
    color: #6c757d !important;
}

.user-avatar {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
    .user-info {
        display: none !important;
    }
}

/* Search Highlighting */
mark.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

mark.bg-info {
    background-color: rgba(13, 202, 240, 0.25) !important;
    color: inherit !important;
    padding: 1px 3px;
    border-radius: 2px;
}

.search-suggestion {
    transition: all 0.2s ease;
}

.search-suggestion:hover {
    text-decoration: underline !important;
    opacity: 0.8;
}
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-primary);
    line-height: 1.55;
    background-color: var(--bg-primary);
    font-size: 0.94rem;
}

/* ===== TYPOGRAFIE ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.2rem; font-weight: 700; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

small {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lead {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* ===== LINKS ===== */
a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue-dark);
}

/* ===== BUTTONS - PROFESSIONELLES DESIGN ===== */
.btn {
    font-weight: 500;
    border-radius: var(--radius-md);
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-secondary {
    background: var(--accent-gold);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
}

.btn-success {
    background: var(--success);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-success:hover {
    background: #38a169;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-warning:hover {
    background: #dd7d1f;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-light {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--bg-accent);
}

.btn-light:hover {
    background: var(--bg-accent);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-1px);
}

/* ===== NAVIGATION & HEADER LOGO ===== */
.navbar-logo {
    height: 100px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* Navigation Icons */
.navbar-nav .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    text-align: center !important;
    flex-direction: column !important;
    min-height: 60px !important;
}

.navbar-nav .nav-link i {
    font-size: 1.5em !important;
    margin-right: 0 !important;
    margin-bottom: 0.2rem !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

/* Spezifische Bootstrap Navbar Overrides */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500 !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,1) !important;
}

/* Facebook Link spezifisches Styling */
.navbar .nav-link.text-light {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    min-height: 60px !important;
    padding: 0.75rem 1rem !important;
    text-align: center !important;
    color: rgba(255,255,255,.85) !important;
}

.navbar .nav-link.text-light i {
    font-size: 1.5em !important;
    margin-right: 0 !important;
    margin-bottom: 0.2rem !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

.navbar .nav-link.text-light:hover {
    color: rgba(255,255,255,1) !important;
}

.header-logo {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 100px;
        max-width: 180px;
    }
    
    .header-logo {
        height: 100px;
        max-width: 160px;
    }
    
    .navbar-nav .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0.6rem 0.75rem !important;
        text-align: left !important;
        flex-direction: row !important;
        min-height: auto !important;
    }
    
    .navbar-nav .nav-link i {
        font-size: 1.3em !important;
        margin-right: 0.5rem !important;
        margin-bottom: 0 !important;
        display: inline-block !important;
        width: auto !important;
        text-align: left !important;
    }
    
    /* Facebook Link mobile */
    .navbar .nav-link.text-light {
        flex-direction: row !important;
        min-height: auto !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }
    
    .navbar .nav-link.text-light i {
        font-size: 1.3em !important;
        margin-right: 0.5rem !important;
        margin-bottom: 0 !important;
        display: inline-block !important;
        width: auto !important;
        text-align: left !important;
    }
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
}

/* Button Größen */
.btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

/* ===== KARTEN ===== */
.card {
    background: var(--bg-primary);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--bg-accent);
    padding: var(--spacing-lg);
    font-weight: 600;
}

.card-body {
    padding: var(--spacing-lg);
}

.card-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Spezielle Kartentypen */
.category-card {
    background: white;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.category-card--compact .card-body {
    padding: 0.75rem;
}

.category-card--compact .card-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.category-card--compact .category-icon,
.category-card--compact .category-icon-placeholder {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.category-card--compact .category-icon {
    object-fit: contain;
}

.category-card .card-title {
    color: var(--text-primary);
}

.category-card .card-text {
    color: var(--text-secondary);
}

.product-card {
    background: white;
}

.product-card .card-title {
    color: var(--text-primary);
}

.product-card .card-text {
    color: var(--text-secondary);
}

.news-card {
    background: white;
}

.news-card .card-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.news-card .card-title a:hover {
    color: var(--primary-blue);
}

/* ===== NAVIGATION ===== */
.navbar {
    box-shadow: var(--shadow-md);
}

.navbar-dark {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
    font-size: 1.375rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
}

.hero-section h1 {
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hero Statistiken */
.hero-stats {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.hero-stats .stat-item {
    margin-bottom: var(--spacing-md);
}

.hero-stats .stat-item:last-child {
    margin-bottom: 0;
}

.hero-stats h3 {
    color: white !important;
    font-weight: 800 !important;
    font-size: 3rem !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1;
    margin-bottom: 0.25rem !important;
}

.hero-stats p {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .hero-stats {
        padding: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .hero-stats h3 {
        font-size: 2.5rem !important;
    }
    
    .hero-stats p {
        font-size: 1rem !important;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-primary);
    color: var(--text-light);
}

footer h5, footer h6 {
    color: white;
    font-weight: 600;
}

footer a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-gold);
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: var(--accent-gold);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* ===== FORMULARE ===== */
.form-control {
    border: 2px solid #cbd5e0;
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-control::placeholder {
    color: #a0aec0;
    opacity: 1;
}

.form-control:hover {
    border-color: #a0aec0;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
    background: #ffffff;
    color: var(--text-primary);
}

.form-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.form-label.required::after {
    content: " *";
    color: var(--error);
}

.form-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Select Felder */
.form-select {
    border: 2px solid #cbd5e0;
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.15);
    outline: none;
}

/* Textarea */
textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* ===== BADGES ===== */
.badge {
    font-weight: 500;
    border-radius: var(--radius-sm);
    padding: 0.375rem 0.75rem;
}

.badge.bg-primary {
    background: var(--primary-blue) !important;
    color: white;
}

.badge.bg-secondary {
    background: var(--accent-gold) !important;
    color: var(--text-primary);
}

.badge.bg-success {
    background: var(--success) !important;
    color: white;
}

/* ===== UTILITY KLASSEN ===== */
.text-primary { color: var(--primary-blue) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--error) !important; }
.text-info { color: var(--info) !important; }

.bg-primary { 
    background: var(--primary-blue) !important; 
    color: white !important; 
}

.bg-secondary { 
    background: var(--bg-secondary) !important; 
}

.bg-gradient { 
    background: linear-gradient(135deg, #4a7bc8 0%, #2c5aa0 80%) !important; 
    color: white !important; 
}

.bg-gradient * {
    color: white !important;
}

.bg-gradient h1,
.bg-gradient h2,
.bg-gradient h3,
.bg-gradient h4,
.bg-gradient h5,
.bg-gradient h6,
.bg-gradient p,
.bg-gradient .lead {
    color: white !important;
}

.bg-gradient .text-white {
    color: white !important;
}

/* ===== ANIMATIONEN ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .card-body {
        padding: var(--spacing-md);
    }
    
    .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.625rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-section {
        padding: var(--spacing-lg) 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 1.75rem; }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .card-body {
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* ===== PASSWORD TOGGLE BUTTONS ===== */
.input-group .btn-outline-secondary {
    border-color: #ced4da;
    color: var(--text-muted);
    background-color: transparent;
    transition: all 0.3s ease;
}

.input-group .btn-outline-secondary:hover {
    background-color: var(--bg-accent);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.input-group .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
    border-color: var(--primary-blue);
}

.input-group .btn-outline-secondary:active {
    background-color: var(--primary-blue-light);
    border-color: var(--primary-blue);
    color: white;
}

/* Input Group Styling */
.input-group > .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.input-group .btn {
    border-left: 0;
}

/* Password Toggle Icon Animation */
.input-group .btn i {
    transition: transform 0.2s ease;
}

.input-group .btn:hover i {
    transform: scale(1.1);
}

/* ===== FACEBOOK INTEGRATION STYLES ===== */
.facebook-card {
    border-left: 4px solid #1877f2;
}

.facebook-btn {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: white !important;
    transition: all 0.3s ease;
}

/* ===== REGISTRIERUNGSFORMULAR SPEZIELLE STYLES ===== */
.registration-form .form-control,
.registration-form .form-select {
    border: 2px solid #94a3b8;
    background-color: #f8fafc;
    font-size: 1rem;
    padding: 0.875rem 1rem;
}

.registration-form .form-control:focus,
.registration-form .form-select:focus {
    background-color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.15);
}

.registration-form .form-label {
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.registration-form .input-group-text {
    background-color: #e2e8f0;
    border: 2px solid #94a3b8;
    color: #475569;
}

.registration-form .btn-outline-secondary {
    border: 2px solid #94a3b8;
    color: #475569;
}

.registration-form .btn-outline-secondary:hover {
    background-color: #e2e8f0;
    border-color: #64748b;
}

/* ===== CARD BODY TEXTFARBEN - HÖCHSTE PRIORITÄT ===== */
.card-body,
.card-body p,
.card-body ul,
.card-body li,
.card-body div {
    background-color: white !important;
    color: var(--text-primary) !important;
}

.card-body .text-muted,
.card-body small.text-muted {
    color: #495057 !important;
}

.card-body strong {
    color: #212529 !important;
}

.facebook-btn:hover {
    background: #166fe5 !important;
    border-color: #166fe5 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(24, 119, 242, 0.3);
}

.card-header {
    color: white !important;
}

.card-header .text-white {
    color: white !important;
    opacity: 1 !important;
}

.card-header .opacity-75 {
    opacity: 0.75 !important;
}

/* Text Readability */
.text-muted {
    color: #6c757d !important;
}

.small, small {
    color: var(--text-secondary) !important;
}

/* Vorteile Layout - Ensure columns stay side by side */
@media (min-width: 576px) {
    .card-body .row .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}