/* Container utama */
.statistik-section {
    margin: 20px auto;
    max-width: 1200px;
    background: #ffffff;
    padding: 20px;
}

.statistik-content {
    display: flex;
    justify-content: center;
    /* margin: 20px auto; */
    max-width: 1200px;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar h1 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.highlight {
    font-size: 50px;
    font-weight: bold;
    color: #999;
}

.highlight-anggota {
    font-size: 80px;
    font-weight: bold;
    color: #999;
    left: -10%;
    bottom: -130%;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);    
    z-index: -1;
}

.highlight-detail-anggota {
    font-size: 80px;
    font-weight: bold;
    color: #999;
    bottom: -80%;
    left: -25px;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);    
}

.highlight-waketu {
    font-size: 80px;
    font-weight: bold;
    color: #999;
    left: -5%;
    bottom: -80%;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);    
    z-index: -1;
}
.highlight-komisi1 {
    font-size: 80px;
    font-weight: bold;
    color: #999;
    left: -5%;
    bottom: -80%;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);    
    z-index: -1;
}

.highlight-berita {
    font-size: 80px;
    font-weight: bold;
    color: #d2d2d2;
    left: -30%;
    bottom: -90%;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);
    /* Warna hitam dengan transparansi */
    z-index: 0;
    /* Letakkan di belakang teks utama */
}
.highlight-portal {
    font-size: 80px;
    font-weight: bold;
    color: #999;
    right: 85%;
    top: -34px;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);
    /* Warna hitam dengan transparansi */
    z-index: 0;
    /* Letakkan di belakang teks utama */
}

.highlight-statistik {
    font-size: 80px;
    font-weight: bold;
    color: #999;
    left: -5%;
    bottom: -83%;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);
    /* Warna hitam dengan transparansi */
    z-index: 2;
    /* Letakkan di belakang teks utama */
}


.highlight-sosmed {
    font-size: 80px;
    font-weight: bold;
    color: #999;
    left: -20%;
    top: -125%;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);
    /* Warna hitam dengan transparansi */
    z-index: 1;
    /* Letakkan di belakang teks utama */
}

.highlight-link {
    font-size: 80px;
    font-weight: bold;
    color: #999;
    left: -10%;
    bottom: -80%;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);
    /* Warna hitam dengan transparansi */
    z-index: -1;
    /* Letakkan di belakang teks utama */
}

/* Menu navigasi */
.menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    width: 100%;
    background: #2469a5;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    gap: 10px;
    height: 100px;
    border-radius: 5px;
    font-weight: bold;
    color: #eee9e9;
    transition: background 0.3s ease-in-out;
}

.menu-item a {
    display: flex;
    /* Flexbox untuk memastikan konten dalam tombol terpusat */
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */
    text-decoration: none;
    /* Hilangkan garis bawah */
    background-color: #fafbff;
    /* Warna background tombol */
    color: #264e83;
    /* Warna ikon */
    font-size: 20px;
    /* Ukuran ikon */
    border-radius: 50%;
    /* Sudut melengkung */
    width: 40px;
    /* Lebar tombol */
    height: 40px;
    /* Tinggi tombol */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Efek hover */
}

.menu-item.active a {
    background-color: #feb600;
    color: #fff;
}

.menu-item .icon {
    font-size: 18px;
}

.menu-item.active {
    background: white;
    color: black;
}

.menu-item:hover a {
    background: white;
    color: #264e83;
}

.menu-item:hover {
    background: #264e83;
    color: #fff;
}

/* Konten utama */
.content {
    flex: 1;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.header h2 {
    font-size: 22px;
    font-weight: bold;
}

.total {
    color: #333;
    font-weight: bold;
}

/* Chart */
canvas {
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    height: auto;
}


.-statistik-carousel-container {
    /* width: 800px; */
    height: 200px;
    overflow: hidden;
    background-color: #1d4ed8;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.-statistik-swiper {
    width: 90%;
    height: 90%;
}

.-statistik-swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.-statistik-carousel-item {
    display: flex;
    align-items: center;
    background: #1d4ed8;
    color: white;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
}

.-statistik-logo-box {
    background: white;
    color: #1d4ed8;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    border-radius: 10px;
    margin-right: 20px;
}

.-statistik-text-content {
    flex: 1;
}

.-statistik-title {
    margin: 0;
    font-size: 22px;
}

.-statistik-description {
    margin: 5px 0;
    width: 600px;
    font-size: 14px;
}

.-statistik-kunjungi {
    background: #facc15;
    color: black;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.-statistik-swiper-pagination {
    right: 15px;
    width: auto;
    color: white;
}