/* Meta Analyzer spezifische Styles */

.back-link {
    margin-bottom: 20px;
}

.back-link a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.back-link a:hover {
    opacity: 1;
}

.results h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.url-display {
    font-size: 0.9rem;
    color: #666;
    word-break: break-all;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 40px 0;
    border-radius: 2px;
}

/* Warnungen */
.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.warning-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.warning-category {
    background: #ff9800;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.warning-impact {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ffcc80;
    font-size: 0.9rem;
    color: #e65100;
}

/* Duplikate */
.duplicate-box {
    background: #ffebee;
    border-left: 4px solid #f44336;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.duplicate-box strong {
    color: #c62828;
    display: block;
    margin-bottom: 5px;
}

/* Empfehlungen */
.recommendation-box {
    background: #f5f5f5;
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.priority-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.priority-badge.critical {
    background: #f44336;
    color: white;
}

.priority-badge.high {
    background: #ff5722;
    color: white;
}

.priority-badge.medium {
    background: #ff9800;
    color: white;
}

.priority-badge.low {
    background: #4caf50;
    color: white;
}

.recommendation-box p {
    margin: 8px 0;
    line-height: 1.6;
    color: #555;
}

.recommendation-box code {
    background: #e8eeff;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: "Courier New", monospace;
    color: #667eea;
    font-size: 0.85rem;
    margin-top: 10px;
    display: inline-block;
}

/* Tech Stack */
.tech-stack { display: flex; flex-direction: column; gap: 6px; }
.tech-row { display: flex; align-items: flex-start; gap: 12px; }
.tech-category { font-size: .8rem; color: var(--color-muted, #5e534a); width: 120px; flex-shrink: 0; padding-top: 2px; }
.tech-names { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-badge {
    background: var(--color-primary, #e62448);
    color: #fff;
    font-size: .75rem;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 500;
}
.muted { color: var(--color-muted, #5e534a); font-size: .9rem; }

/* Wayback */
.wayback-info { font-size: .9rem; }
.wayback-link {
    display: inline-block;
    margin-top: .25rem;
    color: var(--color-primary, #e62448);
    text-decoration: none;
    font-weight: 500;
}
.wayback-link:hover { text-decoration: underline; }
