/* DirectLine-Marketing inspired CSS */
/* Moderne, professionelle Farbpalette basierend auf directline-marketing.de */

:root {
    /* Primärfarben */
    --primary-blue: #1e3a8a;
    --primary-navy: #1e293b;
    --secondary-blue: #3b82f6;
    --accent-orange: #f97316;
    --light-blue: #dbeafe;

    /* Status-Farben */
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --error-red: #ef4444;

    /* Text-Farben */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;

    /* Hintergrund-Farben */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-input: #ffffff;

    /* Borders */
    --border-light: #e5e7eb;
    --border-primary: #e5e7eb;
    --border-secondary: #d1d5db;

    /* Shadows */
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Radien */
    --radius: 8px;
    --radius-large: 12px;

    /* Theme-Transition */
    --theme-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   DARK THEME
   ============================================ */
[data-theme="dark"] {
    /* Primärfarben (heller für Dark Mode) */
    --primary-blue: #3b82f6;
    --secondary-blue: #60a5fa;
    --light-blue: #1e3a5f;

    /* Text-Farben */
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    /* Hintergrund-Farben */
    --bg-light: #1e293b;
    --bg-white: #1e293b;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-input: #0f172a;

    /* Borders */
    --border-light: #334155;
    --border-primary: #334155;
    --border-secondary: #475569;

    /* Shadows (stärker für Dark Mode) */
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
}

/* Reset und Basis-Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    transition: var(--theme-transition);
}

/* Dark Mode body Anpassung */
[data-theme="dark"] body {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Container und Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
}

/* Header - DirectLine Style */
.header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 24px 32px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-large);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* Status Bar - Professioneller Look */
.status-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.status-green {
    background: var(--success-green);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.status-yellow {
    background: var(--warning-yellow);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.status-red {
    background: var(--error-red);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

/* Cards - Moderne DirectLine Optik */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-large);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-blue);
}

.card h2 {
    color: var(--primary-navy);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Buttons - DirectLine Corporate Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-info {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    background: white;
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
}

.btn-export {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-export:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, var(--error-red) 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Upload Area - Attraktiver DirectLine Look */
.upload-area {
    border: 3px dashed var(--secondary-blue);
    border-radius: var(--radius-large);
    padding: 48px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

/* Border-Animation entfernt für cleanen Look */

.upload-area:hover {
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.upload-area.dragover {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, var(--bg-card) 100%);
    transform: scale(1.02);
}

.upload-btn {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.2s ease;
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Statistics Grid - DirectLine Dashboard Look */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-large);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Gradient entfernt - Cards haben schon border-left Farben */

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Difference Types - Farbcodierung */
.diff-new {
    color: var(--success-green) !important;
    -webkit-text-fill-color: var(--success-green) !important;
}

.diff-changed {
    color: var(--warning-yellow) !important;
    -webkit-text-fill-color: var(--warning-yellow) !important;
}

.diff-deleted {
    color: var(--error-red) !important;
    -webkit-text-fill-color: var(--error-red) !important;
}

/* Progress Bar - Moderne Optik */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: var(--secondary-blue);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Tables - Professional Look */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
}

.results-table th {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.results-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
    transition: all 0.2s ease;
}

/* Zebra-Stripes */
.results-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.results-table tbody tr:nth-child(odd) {
    background: white;
}

/* Moderner Hover-Effekt */
.results-table tbody tr:hover {
    background: linear-gradient(90deg, #dbeafe 0%, #e0f2fe 100%) !important;
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    cursor: pointer;
}

.results-table tbody tr:hover td {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Form Controls - DirectLine Style */
.form-control {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 0.95rem;
    background: white;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Input Groups */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
}

.input-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Date Range Selector */
.date-range-selector {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

/* Messages - DirectLine Branded */
.success-message {
    color: var(--success-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin: 16px 0;
    font-weight: 500;
}

.info-message {
    color: var(--secondary-blue);
    background: rgba(59, 130, 246, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: 16px 0;
    font-weight: 500;
}

.error-message {
    color: var(--error-red);
    background: rgba(239, 68, 68, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(239, 68, 68, 0.2);
    margin: 16px 0;
    font-weight: 500;
}

/* Log Container */
.log-container {
    background: var(--primary-navy);
    color: #e2e8f0;
    padding: 20px;
    border-radius: var(--radius);
    max-height: 300px;
    overflow-y: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
}

.log-entry {
    margin-bottom: 8px;
    padding: 4px 0;
}

.log-success { color: #10b981; }
.log-error { color: #ef4444; }
.log-warn { color: #f59e0b; }
.log-info { color: #60a5fa; }

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.loading-content {
    background: white;
    padding: 32px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-large);
    max-width: 300px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--secondary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Comparison Results - Special Styling */
.comparison-summary {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 24px;
    border-radius: var(--radius-large);
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.comparison-summary h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    .header {
        padding: 20px 24px;
        margin-bottom: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .status-bar {
        gap: 12px;
    }
    
    .status-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .card {
        padding: 24px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
    }
    
    .date-range-selector {
        flex-direction: column;
        gap: 16px;
    }
    
    .button-group,
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}

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

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

.highlight {
    color: var(--accent-orange);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ============================================
   DATENRÜCKLIEFERUNG WIZARD STYLES
   ============================================ */

/* Wizard Steps Indicator */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px 0;
    position: relative;
}

/* Verbindungslinie unter den Steps */
.wizard-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    z-index: 0;
}

.wizard-step {
    flex: 1;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #9ca3af;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Step-Kreis */
.wizard-step::before {
    content: attr(data-step);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wizard-step.active {
    color: #6366f1;
    font-weight: 600;
}

.wizard-step.active::before {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transform: scale(1.1);
}

.wizard-step.completed {
    color: #10b981;
}

.wizard-step.completed::before {
    content: '\2713';
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* =================================
   ID-ANREICHERUNG TYPE BUTTONS
   ================================= */

.type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.type-btn:hover {
    border-color: #6366f1 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.type-btn.selected,
.type-btn[style*="border-color: rgb(99, 102, 241)"] {
    border-color: #6366f1 !important;
    background: linear-gradient(135deg, #f0f0ff 0%, #e0e7ff 100%) !important;
}

/* Database Buttons */
.database-btn:hover {
    border-color: #6366f1 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

/* Campaign Selector */
.campaign-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.campaign-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.campaign-btn:hover {
    border-color: #6366f1;
    background: #f5f3ff;
    transform: translateY(-2px);
}

.campaign-btn.active {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
}

.campaign-btn i {
    width: 32px;
    height: 32px;
}

.campaign-btn span {
    font-weight: 600;
    font-size: 1rem;
}

/* Action Selector */
.action-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 25px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: #6366f1;
    background: #f5f3ff;
    transform: translateY(-2px);
}

.action-btn.active {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
}

.action-btn[data-action="add"].active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
}

.action-btn[data-action="remove"].active {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #ef4444;
}

.action-btn i {
    width: 40px;
    height: 40px;
}

.action-btn span {
    font-weight: 600;
    font-size: 1.1rem;
}

.action-btn small {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Wizard Content */
.wizard-content {
    min-height: 300px;
    animation: fadeIn 0.3s ease;
}

.wizard-content h3 {
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 1.25rem;
}

/* Form Elements */
.form-input,
.form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Wizard Navigation */
.wizard-nav {
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* Status Selection List */
.status-selection-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fafafa;
}

.status-selection-item:last-child {
    border-bottom: none;
}

/* Mapping Rows */
.mapping-row {
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--bg-tertiary);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

[data-theme="dark"] .mapping-row {
    background: var(--bg-secondary);
}

/* Button Large */
.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Wizard */
@media (max-width: 768px) {
    .wizard-steps {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    /* Verbindungslinie auf Mobile ausblenden */
    .wizard-steps::before {
        display: none;
    }

    .wizard-step {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .wizard-step::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .campaign-selector,
    .action-selector {
        grid-template-columns: 1fr;
    }

    .campaign-btn,
    .action-btn {
        padding: 20px 15px;
    }

    .type-btn {
        padding: 20px !important;
    }

    .file-type-selector {
        flex-direction: column !important;
    }
}