/* SOP Hub - Vollständiges CSS */

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
}

/* Navigation */
.sop-nav {
    background: #f8fafc;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
}
.sop-nav a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

/* Alert */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 0 24px 24px 24px;
}
.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

/* SOP Content */
.sop-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 40px 24px;
}

.sop-header {
    margin-bottom: 32px;
}

.sop-meta {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.sop-content h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.sop-body h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.sop-body h3 {
    font-size: 1.4rem;
    color: #334155;
    margin: 24px 0 12px 0;
}

.sop-body p {
    margin-bottom: 16px;
    color: #475569;
}

.sop-body ul {
    margin: 16px 0;
    padding-left: 24px;
}

.sop-body li {
    margin-bottom: 8px;
    color: #475569;
}

.sop-body strong {
    color: #1e293b;
    font-weight: 600;
}

/* Callouts */
.callout {
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid;
}

.callout-warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
    color: #92400e;
}

.callout-tip {
    background: #dbeafe;
    border-left-color: #3b82f6;
    color: #1e40af;
}

.callout-check {
    background: #d1fae5;
    border-left-color: #10b981;
    color: #065f46;
}

/* Bestätigung */
.sop-acknowledge {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 48px;
    text-align: center;
}

.sop-acknowledge h3 {
    color: #1e293b;
    margin-bottom: 12px;
}

.sop-acknowledge p {
    color: #64748b;
    margin-bottom: 20px;
}

.btn-acknowledge {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-acknowledge:hover {
    background: #1d4ed8;
}

/* Admin Styles */
.section {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.section h2 {
    color: #1e293b;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .sop-content {
        padding: 0 16px 32px 16px;
    }
    
    .sop-content h1 {
        font-size: 2rem;
    }
    
    .sop-body h2 {
        font-size: 1.5rem;
    }
}
