.tab-container {
    margin: 20px 0;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

.tab-buttons {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tab-button {
    padding: 12px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
    margin: 0;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.tab-button:hover {
    color: #2c3e50;
    background-color: #e9ecef;
}

.tab-button.active {
    color: #2c3e50;
    background-color: white;
    border-bottom: 2px solid #2c3e50;
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: white;
    min-height: 200px;
}

.tab-content:first-of-type {
    display: block;
}

.question-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.category-section {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.category-section h4 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #dee2e6;
}

.question-item {
    margin-bottom: 10px;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.question-text {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 5px;
}

.answer-text {
    color: #6c757d;
}

/* Additional styles for the V&C assessment */
.vc-score-summary {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.score-interpretation {
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.score-explanation {
    line-height: 1.6;
    color: #495057;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.image-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #f8f9fa;
} 