@media (min-width:1025px) and (max-width:1366px) {

    * {
        margin: 0;
        padding: 0;
        font-family: Arial, Helvetica, sans-serif;
    }

    .wrap {
        width: 1300px;
        height: 100vh;
        margin-left: auto;
        margin-right: auto;
        /*border: 5px solid black; */
    }

    #header {
        width: 1300px;
        height: 40px;
        background-image: url('../../main_images/001_001_blank20.jpg');
    }

    #linehead1 {
        width: 1300px;
        height: 5px;
        background: #035;
    }

    #linehead2 {
        width: 1300px;
        height: 3px;
        background: #09c;
    }

    #linehead3 {
        width: 1300px;
        height: 2px;
        background: #999;
    }


/* --- PERBAIKAN: Kontainer Konten Utama menjadi Row --- */
.content {
    display: flex;
    flex-direction: row; /* Mengatur susunan box ke samping (3 kolom) */
    flex: 1;            /* Mengisi sisa ruang kosong antara header & footer */
    width: 100%;
    height: 90vh;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.teks-responsif { font-size: 16px; }        
.teks-resp30 { font-size: 26px; font-weight: bold; color: black;}
.teks-resp24 { font-size: 20px; color: black;}
.teks-resp20 { font-size: 14px; color: black;}
     
/* --- Ukuran 3 Kolom Aktual (45%, 45%, 10%) --- */
.leftbox {
    flex: 0 0 40%; 
    /*background-color: skyblue;*/
}

.box-container {
    width: 100%; /* Lebar box utama */
    height: 75vh;
    /*background-color: yellow;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-padding {
    width: 90%;
    height: 0;
    /* Padding-bottom disamakan dengan width untuk rasio 1:1 */
    padding-bottom: 90%; 
    /*background-color: #e74c3c;*/
    position: relative; /* Penting untuk posisi konten absolut di dalamnya */
}

/* DIUBAH: Menggunakan .box-text, bukan .content agar tidak bentrok */
.box-pix {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  /*  color: white;
    text-align: center; */
    border:10px solid #ccc;
    border-radius:20px;
    background-color:#777;
}

.box-pix img {
    width: 100%;
}

.box-info {
    width:100%;
    height:14vh;
    /*background-color:yellow;*/
    margin-top: 1vh;
    display: flex;
    flex-direction: row; 
    flex: 1; 
}

.box-logo {
    width:30%;
    height:120px;
    /*background-color:yellow;*/
    margin-left: 1.2vw;
    float: left;
}

.box-logo img {
    width: 80px;
    height: 80px;
}

.box-bond {
   display:none;
}

.middlebox {
    flex: 0 0 50%; 
    /*background-color: yellow;*/
    border-left:1px solid #ccc;
    border-right:1px solid #ccc;
}

.judul {
    width:95%;
    height:4vh;
    margin-top: 1.2vh;
    margin-left: 1.2vw;
    /*background-color:yellow;*/
    font-size: 24px;
    color: black;
    border-bottom:1px solid #ccc;
}

.box-ket {
    width:95%;
    min-height:80vh;
    margin-top:1.5vh;
    margin-left: 1.2vw;
    /*background-color:yellow;*/
}

table, table tbody, table tr, table td 
{ 
height: 1vh; 
} 

.box-chatroom {
    width:100%;
    height:63vh;
    overflow: scroll;
    margin-top:20px;
    /*background-color:yellow;*/
}

.box-chattex {
    width:100%;
    height:15vh;
    margin-top:2vh;
    /*background-color:skyblue;*/
}

.rightbox {
    box-sizing: border-box; /* Kunci utamanya di sini */
    width: calc(10%); /* Sekarang ini akan bekerja akurat */
    background-color: #eee;
}

.pagenav {
        width: 10vw;
        height: 40vh;
        margin-top: 20vh;
        margin-left: 2vw;
        /* background: #09c; */
    }

    .pgmenu {
        width: 10vw;
        height: 40vh;
        /* background: #eee; */
        list-style: none;
    }
    
        
    .pgmenu li img {
        width: 80px;
        height: 80px;
        margin-top: 12px;
        border: 2px solid #ccc;
        border-radius: 15px;
        float: left;
    }

.footsection {
    width: 100%;
}

.navigasi { height: 19px; background: #035; width: 100%; }
.linebar { height: 3px; background: #09c; width: 100%; }
.copyright {
    background: #222;
    color: grey;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
}

}