/* Report Page Styles - Part 2: Score Section */

/* Score section */
.score-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.score-display {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 250px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.score-circle::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.score-circle.good {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.score-circle.medium {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.score-circle.bad {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.score-number {
    position: relative;
    z-index: 1;
}

.score-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.score-label span:first-child {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.score-rating {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.score-summary {
    flex: 2;
    min-width: 300px;
    display: flex;
    align-items: center;
    border-left: 1px solid #f0f0f0;
    padding-left: 30px;
}

.score-summary p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Website review section */
.website-review-section {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.website-review-section h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.review-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.website-type-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.website-type-info h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

/* Collapsible sections */
.section-header.collapsible {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.section-header.collapsible:hover {
    background-color: #f1f3f5;
}

.section-header.collapsible h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.collapse-icon {
    transition: transform 0.3s ease;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
    border-radius: 0 0 8px 8px;
    padding: 0 15px;
}

.collapsible-content.open {
    max-height: 2000px;
    padding: 15px;
}
