
.analysis-content, .strategy-report {
    padding: 20px;
}

.ai-section {
    margin-bottom: 20px;
}

.ai-section h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.ai-section ul {
    margin: 10px 0;
    padding-left: 20px;
}

.ai-section li {
    margin: 5px 0;
}

.prompt-details {
    border-top: 1px solid #e0e0e0;
    margin-top: 10px;
}

.prompt-content {
    padding: 15px;
    background: #f8f9fa;
    font-size: 0.9em;
    overflow-x: auto;
}

.strategy-report {
    line-height: 1.6;
}

.strategy-report h2 {
    color: #2c3e50;
    margin: 25px 0 15px;
}

.strategy-report h3 {
    color: #34495e;
    margin: 20px 0 10px;
}

/* Überschreibe die vorherigen Styles für .ai-response-container */
.ai-response-container {
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
}

.ai-response-container h2 {
    color: white !important;
    font-size: 1.8em !important;
    margin: 30px 0 15px !important;
    font-weight: 600 !important;
    text-align: left !important;
}

.ai-response-container h3 {
    color: white !important;
    font-size: 1.4em !important;
    margin: 20px 0 10px !important;
    font-weight: 500 !important;
    text-align: left !important;
}

.ai-response-container p {
    color: white !important;
    font-size: 1.1em !important;
    line-height: 1.6 !important;
    margin: 10px 0 !important;
    text-align: left !important;
}

.ai-response-container strong {
    font-weight: 600 !important;
    color: white !important;
}

/* Tabs für Analyse/Prompt */
.response-tabs {
    width: 100%;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.tab-btn {
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: white;
    box-shadow: none;
    transform: none;
}

.tab-btn.active {
    color: white;
    border-bottom: 2px solid white;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

/* Prompt Anzeige */
.prompt-content {
    background: transparent;
    color: white;
    padding: 15px;
    font-family: monospace;
    font-size: 0.9em;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* Content Formatting */
.ai-section h4,
.strategy-report h2,
.strategy-report h3 {
    color: white;
    margin: 20px 0 10px;
}

.ai-section p, 
.ai-section li,
.strategy-report p {
    color: white;
    line-height: 1.6;
}

.ai-section ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style-type: none;
}

.ai-section li:before {
    content: "•";
    color: white;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.ai-sections {
    color: white;
    padding: 20px;
}

.meta-info {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.meta-info .score,
.meta-info .type {
    color: white;
    font-size: 1.1em;
    font-weight: 500;
}

.ai-section {
    margin-bottom: 30px;
}

.ai-section h4 {
    color: white;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.ai-section ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.ai-section li {
    color: white;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.ai-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
}