/* section_no5_new.css */
.report-showcase-container {
    max-width: 1200px;
    margin: 40px auto 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.report-tabs {
    display: flex;
    background-color: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
}

.report-tab {
    flex: 1;
    padding: 18px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-right: 1px solid #e0e0e0;
}

.report-tab:last-child {
    border-right: none;
}

.report-tab.active {
    background-color: #007bff;
    color: #fff;
}

.report-content {
    display: none;
    padding: 25px;
}

.report-content.active {
    display: block;
}

.report-content .swiper-container {
    width: 100%;
    border-radius: 8px;
}

.report-content .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.swiper-button-next::after, .swiper-button-prev::after {
    display: none;
}
