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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 300;
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 15px 30px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9em;
}

.breadcrumb a {
    color: #0078d4;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 30px;
}

/* Intro Box */
.intro-box {
    background-color: #e7f3ff;
    border-left: 4px solid #0078d4;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.intro-box p {
    margin: 0;
    font-size: 1.1em;
}

/* Steps */
.step {
    margin-bottom: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.step:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-header {
    background-color: #f9f9f9;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.step-number {
    background-color: #0078d4;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    flex-shrink: 0;
}

.step-header h2 {
    font-size: 1.5em;
    color: #333;
    margin: 0;
}

.step-content {
    padding: 25px;
}

.step-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

/* Image Container */
.image-container {
    margin: 25px 0;
    text-align: center;
}

.guide-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    padding: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Platzhalter für fehlende Bilder */
.guide-image:after {
    content: '📷 Screenshot wird hier angezeigt';
    color: #999;
    font-size: 1.2em;
}

.image-caption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
    font-size: 0.95em;
}

/* Password Requirements */
.password-requirements {
    background-color: #fff9e6;
    border-left: 4px solid #ffb900;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.password-requirements h3 {
    margin-bottom: 12px;
    color: #333;
    font-size: 1.1em;
}

.password-requirements ul {
    list-style-position: inside;
    margin-left: 10px;
}

.password-requirements li {
    margin: 8px 0;
    color: #555;
}

/* Success Box */
.success-box {
    background-color: #e6f7e6;
    border-left: 4px solid #107c10;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

.success-box h3 {
    color: #107c10;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.success-box p {
    margin: 0;
}

/* Tips Section */
.tips {
    margin-top: 50px;
}

.tips h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.tip-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.tip-box.warning {
    background-color: #fff4e6;
    border-left-color: #d83b01;
}

.tip-box.info {
    background-color: #e7f3ff;
    border-left-color: #0078d4;
}

.tip-box h3 {
    margin-bottom: 12px;
    font-size: 1.2em;
}

.tip-box ul {
    margin-left: 20px;
    margin-top: 10px;
}

.tip-box li {
    margin: 8px 0;
}

.tip-box p {
    margin: 0;
}

/* FAQ Section */
.faq {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.faq h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #333;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 3px solid #0078d4;
}

.faq-item h3 {
    color: #0078d4;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.faq-item p {
    margin: 0;
    color: #555;
}

/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 50px;
    color: #666;
    font-size: 0.9em;
}

/* Strong/Bold Text */
strong {
    color: #0078d4;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    main {
        padding: 20px;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-header h2 {
        font-size: 1.2em;
    }

    .step-content {
        padding: 15px;
    }

    .container {
        box-shadow: none;
    }
}

@media print {
    .breadcrumb {
        display: none;
    }

    .step {
        page-break-inside: avoid;
    }

    header {
        background: #0078d4;
        color: white;
    }
}

/* Suche oben auf der Startseite */
.search-box {
    margin-top: 24px;
    margin-bottom: 8px;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.search-box label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}
.search-box input[type="search"] {
    width: 100%;
    padding: 9px 11px;
    border-radius: 6px;
    border: 1px solid #c4c4c4;
    font-size: 0.95rem;
}
.search-box input[type="search"]:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 1px rgba(0,120,212,0.25);
}
.search-box .search-hint {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #777;
}
.search-no-result {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}
