@media (min-width:1367px) and (max-width:1920px) {

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

#header {
    width: 100%;
    height: 40px;
    background-image: url('../../main_images/001_001_blank20.jpg');
    background-size: cover;
}

#linehead2 { height: 3px; background: #09c; }
#linehead3 { height: 2px; background: #999; }
#linehead4 { height: 1px; background: #ccc; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Container Utama --- */
.wrap {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Area Utama Flexbox --- */
.content {
    display: flex;
    flex-direction: row; 
    flex: 1;            /* Membantu mendorong footer ke bawah */
    width: 100%;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    min-height: 500px;  /* Memberikan tinggi minimal agar kolom terlihat tinggi */
}

.teks-resp24 {font-size:30px; color:black;}

     
/* --- Ukuran 3 Kolom Aktual (45%, 45%, 10%) --- */
.leftbox {
    flex: 0 0 calc(45%); 
    /*background-color: skyblue;*/
}

.box-container {
    width: 97%; /* Lebar box utama */
    margin-top: 1.2vw;
    margin-left: 1.2vw;
}

.box-padding {
    width: 97%;
    height: 0;
    /* Padding-bottom disamakan dengan width untuk rasio 1:1 */
    padding-bottom: 97%; 
    /*background-color: #e74c3c;*/
    position: relative; /* Penting untuk posisi konten absolut di dalamnya */
}

/* DIUBAH: Menggunakan .box-text, bukan .content agar tidak bentrok */
.box-pix-H {
    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-H img{
    width:100%;
}

.box-pix-V {
    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-V img {
    height: 100%;
}

.box-info {
    width:100%;
    height:14vh;
    /*background-color:yellow;*/
    margin-top: 10px;
    display: flex;
    flex-direction: row; 
    flex: 1; 
}

.box-logo {
    width:20%;
    height:14vh;
    /*background-color:yellow;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-bond {
    width:80%;
    height:14vh;
    border-left:1px solid #555;
    /*background-color:orange;*/
}

.middlebox {
    flex: 0 0 calc(45%); 
    /*background-color: yellow;*/
    border-left:1px solid #ccc;
    border-right:1px solid #ccc;
    padding: 15px;
}

.judul {
    width:100%;
    height:40px;
    /*background-color:yellow;*/
    font-size: 32px;
    color: maroon;
    border-bottom:1px solid #ccc;
}

.box-data {
    width:90%;
    height:60vh;
    margin-top:10vh;
    margin-left:2vw;
    /*background-color:yellow;*/
}

.box-chatroom {
    width:100%;
    min-height:70vh;
    overflow: scroll;
    margin-top:20px;
    /*background-color:yellow;*/
}

.box-chattex {
    width:100%;
    height:150px;
    margin-top:20px;
    /*background-color:skyblue;*/
}

.rightbox {
    flex: 0 0 10%;
    min-width: 0;
    box-sizing: border-box;
    background-color: #eee;
}

.pagenav {
        width: 10vw;
        height: 40vh;
        margin-top: 20vh;
        margin-left: 25px;
         /*background-color: #09c; */
    }

    .pgmenu {
        width: 10vw;
        height: 40vh;
        /* background: #eee; */
        list-style: none;
    }
    
        
    .pgmenu li img {
        width: 100px;
        height: 100px;
        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;
}

}