﻿
#image-slider {
    width: 80%;
    margin: 30px auto;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .splide__slide img {
        width: 80%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

.splide__arrow {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

    .splide__arrow svg {
        fill: #fff;
    }

.splide__pagination__page {
    background: #ccc;
}

    .splide__pagination__page.is-active {
        background: #333;
        transform: scale(1.2);
    }

@media (max-width: 768px) {
    .splide__slide img {
        width: 95%;
    }
}

.splide__arrow {
    width: 2em;
    height: 2em;
}

.splide__slide {
    text-align: center;
}









/* Main Wrapper */
.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
}

/* Tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    justify-content: center;
}

    .tabs li {
        padding: 10px 15px;
        background: #f1f1f1;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        text-align: center;
        transition: 0.3s;
        color: black;
    }

        .tabs li.active {
            background: #d71920;
            color: #fff;
        }

/* Content */
.content-wrapper {
    width: 100%;
}

/* Table Responsive */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    /* Table */
    .table-responsive table {
        width: 100%;
        min-width: 600px;
        border-collapse: collapse;
        background: #fff;
    }

    .table-responsive th,
    .table-responsive td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: center;
        font-size: 15px;
        color: black;
    }

    .table-responsive th {
        background: #f8f8f8;
        font-weight: 600;
    }

/* Tab Content */
.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

/* Mobile */
@media (max-width: 768px) {

    .wrapper {
        padding: 10px;
    }

    .tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        scrollbar-width: thin;
    }

        .tabs::-webkit-scrollbar {
            height: 5px;
        }

        .tabs li {
            flex: 0 0 auto;
            white-space: nowrap;
            font-size: 13px;
            padding: 8px 12px;
        }

    .table-responsive table {
        min-width: 500px;
    }

    .table-responsive th,
    .table-responsive td {
        font-size: 13px;
        padding: 8px;
    }

    h3 span {
        font-size: 22px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .tabs li {
        font-size: 12px;
        padding: 7px 10px;
    }

    .table-responsive th,
    .table-responsive td {
        font-size: 12px;
        padding: 6px;
    }

    h3 span {
        font-size: 18px;
    }
}




