/* Modern Sections Layout CSS - Based on Design Option 3 */

.modern-style {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.modern-style .report-header {
    text-align: left;
    padding: 30px;
    margin-bottom: 0;
    background-color: #2d3436;
    color: white;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.modern-style .report-header h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

.modern-style .report-header p {
    opacity: 0.9;
    max-width: 800px;
}

.modern-style .section {
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.modern-style .section:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.modern-style .section-header {
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modern-style .section-header i {
    margin-right: 10px;
}

.modern-style .section-content {
    padding: 20px;
    background-color: white;
}

.modern-style .safety {
    background-color: white;
    box-shadow: none;
    border: none !important;
}

.modern-style .safety .section-header {
    background-color: #e74c3c;
    color: white;
    border: none !important;
}

.modern-style .major {
    background-color: white;
    box-shadow: none;
    border: none !important;
}

.modern-style .major .section-header {
    background-color: #f39c12;
    color: white;
    border: none !important;
}

.modern-style .minor {
    background-color: white;
    box-shadow: none;
    border: none !important;
}

.modern-style .minor .section-header {
    background-color: #2ecc71;
    color: white;
    border: none !important;
}

.modern-style .plumbing {
    background-color: white;
    box-shadow: none;
    border: none !important;
}

.modern-style .plumbing .section-header {
    background-color: #2196f3;
    color: white;
    border: none !important;
}

.modern-style .electrical {
    background-color: white;
    box-shadow: none;
    border: none !important;
}

.modern-style .electrical .section-header {
    background-color: #9b59b6;
    color: white;
    border: none !important;
}

.modern-style .roof {
    background-color: white;
    box-shadow: none;
    border: none !important;
}

.modern-style .roof .section-header {
    background-color: #795548;
    color: white;
    border: none !important;
}

.modern-style .subsection {
    border-left: 3px solid #ddd;
    padding-left: 15px;
    margin: 15px 0;
}

.modern-style .subsection-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #34495e;
}

.modern-style .next-steps {
    background-color: #f5f9fc;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.modern-style .next-steps-header {
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
} 