@import url("https://fonts.googleapis.com/css?family=Patua+One");
:root {

/* --color_grd_3: #b2f2ff;     --color_grd_2: #006fa7;   */
		--warna_text_3: #016993;
        --warna_subhal: #21897b;
        --warna_dasar: #b2f2ff;
        --warna_huruf_utama: #000000;
        --color_grd_1: #000000;
        --color_grd_2: rgba(21, 137, 180, 0.5);
        --color_grd_3: rgba(165, 231, 255, 0.1);

		
        --primary-color: #fffab2;
        --secondary-color: #2ecc71;
        --background-color: #9bffd8;
        --text-color: #333;
        --warna_runtext: #fff700;
		
        --warna_tombol_dasar: #025f85;
        --warna_tombol_over: #3b94af;
		--warna_tomboltext_over:#f2d500;
        --warna_tombol_text: #ffffff;
		
        --warna_dasar_popup: #caf2f6;
        --warna_header_popup: #05507e;
        --warna_footer_popup: #bcd3d8;
        --warna_text_header_popup: #edff38;
        --warna_footer: #006fa7;
		
		--warna_title_hasil: #000000;
		--warna_isi_hasil: #03606c;

}

body,
html {
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%;
        display: flex;
        background-color: var(--warna_dasar);
        color: var(--warna_huruf_utama);
        font-family: "Roboto", sans-serif;
		font-size: 16px; /* Ukuran font */
  		font-weight: 400; /* Ketebalan normal */
  		line-height: 1.5; /* Spasi antar baris */
		
}
#master_box {
        overflow: hidden;
        /* Gunakan 'auto' untuk scrollbar dinamis */
        height: 100%;
        /* Gunakan max-height agar sesuai dengan parent */
        width: 100%;
		
}
/* Kontainer tabel full screen */
.font_tabel {
        font-family: "Roboto", sans-serif; /* Menggunakan font Roboto */
        color: #000000;
        font-size: 12px;
        font-weight: 200;
}
.table-container {
        display: flex;
        align-items: center;
        /* Memastikan tabel berada di tengah secara vertikal */
        justify-content: center;
        /* Memastikan tabel berada di tengah secara horizontal */
        height: 100%;
        /* Mengambil tinggi penuh layar */
        width: 100%;
        /* Mengambil lebar penuh layar */
        top: 0;
        left: 0;
}
.full-screen-table {
        position: fixed;
        /* Posisi tetap */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Tinggi penuh */
        display: table;
        /* Menggunakan display table */
        /* Warna latar */
        border-collapse: collapse;
        /* Hapus jarak antar border */
        z-index: 1;
        /* Tetap di atas elemen lain */
}
.header {
        width: 100%;
        background-image: url(../../image/header.jpg);
        background-repeat: no-repeat;
        background-size: contain;
        /* Menyesuaikan ukuran gambar agar sesuai dengan div */
        background-position: center;
        /* Memposisikan gambar di tengah */
        height: 80px;
        top: 0;
}
.footer {
        background-color: var(--warna_footer);
}
.translator-container {
        background-color: #aeaeae;
        padding: 20px;
        padding-top: 100px;
        height: 100%;
}
/* Running text */
.running-text {
        color: var(--warna_runtext);
        font-size: 18px;
        font-weight: 500;
        display: inline-block;
        position: absolute;
        white-space: nowrap;
        padding-bottom: 10px;
        /* Hindari teks membungkus */
        animation: scroll-left 10s linear infinite;
        /* Efek animasi */
        text-shadow: -1px -1px rgba(0, 0, 0, 0.5), 1px 1px;
}
.gradien_color_1 {
	z-index: 1500;			
background: linear-gradient(to bottom, var(--color_grd_1), var(--color_grd_2), var(--color_grd_3));
	 		/* Gradasi dari atas ke bawah 
	
	background: linear-gradient(to bottom,rgba(255, 165, 0, 1),rgba(255, 165, 0, 0.75), rgba(255, 165, 0, 0.5), rgba(255, 165, 0, 0.25), rgba(255, 165, 0, 0));

		
        
	 	border-bottom: 1px solid #259ba1;
		*/
		
}
.gradien_color_2 {
        background: linear-gradient(to top, var(--color_grd_1), var(--color_grd_2), var(--color_grd_3));
       
}
/* Tombol utama */
#my_map {
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	border: 0px solid #15a6dd;
	border-radius: 0px;
	width: 100%;
	height: 150px;

	background-color: #000000;
	background-image: url(../../image/peta.png);
}
#my_cem {
        border: 2px solid #9cb9b8;
        width: 100%;
        height: 400px;
}
#canvas {
        display: none;
}
.tombol_android {

 		font-family: "Roboto", sans-serif;
		font-size: 16px; /* Ukuran font */
  		font-weight: 400; /* Ketebalan normal */
  		line-height: 1.5; /* Spasi antar baris */

        display: flex;
        /* Gunakan Flexbox untuk tata letak ikon dan teks */
        align-items: center;
        /* Rata vertikal ikon dan teks */
        gap: 25px;
        /* Jarak antara ikon dan teks */
        display: inline-block;
        padding: 5px 40px;
        background-color: var(--warna_tombol_dasar);
        /* Warna khas Android (Material Design) */
        color: white;

        text-align: center;
        border: none;
        border-radius: 15px;
        /* Membuat tombol oval */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        /* Bayangan */
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        /* Animasi efek */
}
/* Efek saat tombol ditekan */
.tombol_android:active {
        background-color: #21bfba;
        /* Warna lebih gelap saat ditekan */
        /* Sedikit mengecil */
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
        /* Reduksi bayangan */
}
/* Efek hover */
.tombol_android:hover {
        background-color: var(--warna_tombol_over);
        color: var(--warna_tomboltext_over);
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        /* Warna lebih terang saat hover */
}
/* Variasi tombol kecil */
.tombol_android.small {
        font-size: 12px;
        padding: 8px 10px;
}
.input-wrapper {
        --padding: 16px;
        --focus-color: black;
        position: relative;
        display: flex;
        align-items: center;
}
input {
        padding: var(--padding);
        border: 2px solid gray;
        outline: none;
        border-radius: 6px;
}
.placeholder {
        position: absolute;
        background-color: white;
        color: gray;
        left: var(--padding);
        padding: 0 4px;
        transition: all 0.2s ease-in;
}
input:is(:focus, :valid) {
        border: 2px solid var(--focus-color);
}
input:is(:focus, :valid) + .placeholder {
        transform: translatey(calc(-1 * var(--padding) - 12px));
        font-size: 14px;
        color: var(--focus-color);
}
td_judul {
        padding: 20px;
        text-align: center; /* Menempatkan teks di tengah secara horizontal */
        vertical-align: middle; /* Menempatkan teks di tengah secara vertikal */
        border: 1px solid #ddd;
}
.text_judul_hal {
		
        font-family: "Oswald", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--warna_subhal);
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid #259ba1;
        padding-bottom: 5px;
}

.text_subjudul_hal {
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        /* Ukuran teks */
        font-weight: 600;
        /* Ketebalan teks */
        color: #000000;
        /* Warna teks */
        display: flex;
        /* Gunakan Flexbox untuk tata letak ikon dan teks */
        align-items: center;
        /* Rata vertikal ikon dan teks */
        gap: 10px;
        /* Jarak antara ikon dan teks */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        /* Bayangan teks */
        margin: 20px;
        /* Margin untuk judul */
        border-bottom: 2px solid #007bff;
        /* Garis bawah dekoratif */
        padding-bottom: 5px;
        /* Spasi antara teks dan garis bawah */
}
.judul_narasi {
        font-family: "Roboto", sans-serif;
        font-size: 3rem;
        /* Ukuran teks */
        font-weight: 600;
        /* Ketebalan teks */
        color: #000000;
        /* Warna teks */
        display: flex;
        /* Gunakan Flexbox untuk tata letak ikon dan teks */
        align-items: center;
        /* Rata vertikal ikon dan teks */
        gap: 10px;
        /* Jarak antara ikon dan teks */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        /* Bayangan teks */
  
        /* Margin untuk judul */
        border-bottom: 2px solid #007bff;
        /* Garis bawah dekoratif */
        padding-bottom: 5px;
        /* Spasi antara teks dan garis bawah */
}
.text_2  {
        padding: 10px;
        height: auto; /* Tinggi penuh viewport */
        justify-content: center; /* Mengatur konten di tengah secara horizontal */
        align-items: center; /* Mengatur konten di tengah secara vertikal */
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--warna_text_header_popup);
        background-color: var(--warna_header_popup);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.text_3 {
        font-family: "Oswald", sans-serif;
        font-size: 1rem;
        font-weight: 400;
        color: var(--warna_text_3);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid #259ba1;
        padding-bottom: 5px;
}
.text_con {
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        /* Ukuran teks */
        font-weight: 600;
        /* Ketebalan teks */
        color: #930101;
        /* Warna teks */
        
        align-items: center;
        /* Rata vertikal ikon dan teks */

        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        /* Bayangan teks */
        margin: 20px;


}

.text_subjudul_patua {
        font-family: "Roboto", cursive;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        word-spacing: 3px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        color: #9e0000;
}
.sub-page-title i {
        font-size: 1.5rem;
        /* Ukuran ikon */
        color: #007bff;
        /* Warna ikon */
}
.text_1 {
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        /* Ukuran teks */
        font-weight: 400;
        /* Ketebalan teks */
        color: #016993;
        /* Warna teks */
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
        /* Bayangan teks */
}
.oval_table {
        width: 100%;
        border-collapse: separate;
        /* Tidak menyatukan border */
        border-spacing: 10px;
        /* Spasi antar sel */
}
.oval_border {
        padding: 6px;
        /* Ruang di dalam sel */
        text-align: center;
        /* Teks rata tengah */
        background-color: #01488b;
        /* Latar belakang sel */
        border: 2px solid #1d6eb9;
        /* Border hijau */
        border-radius: 20px;
        /* Membuat sudut oval */
}
/* Hover efek untuk td */
oval_border:hover {
        background-color: #e1d9c5;
        /* Warna hijau muda saat hover */
        /* Warna border lebih gelap */
        transition: all 0.3s ease;
        /* Animasi transisi */
}
.tbl_tr:hover {
        background-color: #f2f2f2; /* Warna latar belakang saat hover */
}
/* Gaya tambahan untuk baris ganjil (opsional) */
.tbl_tr:nth-child(odd) {
        background-color: #cfbf99;
}
/* --------------------------------------------------------------- */
.button-container {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;

}
buttonx {
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        outline: none;
        transition: transform 0.2s;
}
buttonx:hover .icon-circle {
        background-color: var(--warna_tombol_over); /* Warna lingkaran saat hover */
}
.icon-circle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: var(warna_tombol_dasar);
        color: white;
        border-radius: 50%;
        font-size: 20px;
        margin-bottom: 4px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.button-text {
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        color: var(--warna_tombol_text);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
/* --------------------------------------------------------------- */
.input-group {
        position: relative;
        margin: 15px 0;
        background: #c3f7f2;
}
.input-group .icon {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        font-size: 18px;
        color: var(--warna_tombol_dasar);

}
.input-group .toggle-icon {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            font-size: 18px;
            cursor: pointer;
            color: var(--warna_tombol_dasar);
        }
		
.input-group label {
        position: absolute;
        top: 50%;
        left: 100px;
        background: transparent;
        transform: translateY(-50%);
        font-size: 12px;
        color: #000000;
        padding: 0 10px;
        pointer-events: none;
        transition: 0.1s;
}
.input-group input {
        font-family: "Roboto", sans-serif;
        width: 100%;
        height: 40px;
        font-size: 14px;
        color: #000000;
        padding: 0 50px;
        border: 1.5px solid #2c7c80;
        outline: none;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        background: #c3f7f2;
}
.input-group input::placeholder {
        font-family: "Roboto", sans-serif;
        color: #000000;
        font-size: 14px;
        color: #000000;
        opacity: 1;
}


.hori_center {
    text-align: center; /* Agar placeholder juga di tengah */
  }
.verti_center {

	display: flex;       /* Mengaktifkan flexbox */
  	align-items: center; /* Menempatkan item di tengah secara vertikal */
  	justify-content: center; /* Opsional: menempatkan item di tengah horizontal juga */
  
  }
    
.input-group .label {
        font-family: "Roboto", sans-serif;
        width: 100%;
        height: 40px;
        font-size: 14px;
        color: #000000;
        padding: 0 50px;
        background: transparent;
        border: 1.5px solid #2c7c80;
        outline: none;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        appearance: none; /* Menghilangkan dropdown default */
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
}
/* Scroll pada dropdown */
.input-group select option {
        background-color: #beeac4; /* Warna latar untuk opsi */
        color: #333; /* Warna teks opsi */
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.input-group select option:hover {
        background-color: #4caf50; /* Warna latar saat hover */
        color: #fff; /* Warna teks saat hover */
}
.overlay {
        display: none; /* Overlay disembunyikan secara default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 75, 103, 0.5); /*background-color: rgba(0, 0, 0, 0.5); */
		
        z-index: 999; /* Di bawah popup */
}
.popup {
        color: var(--warna_huruf_utama);
        font-family: "Inter", sans-serif;
		font-size: 15px;
        font-weight: 100;
        display: none; /* Popup disembunyikan secara default */
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--warna_dasar_popup);
        border: 0px solid #ccc;
        padding: 0px;
        z-index: 999;
        width: 80%;
        border-radius: 0px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Menambahkan box-shadow */
	transition: opacity 0.3s ease-in-out;
}

.scrollable-div {
        max-height: 50vh;
        overflow-y: auto; /* Aktifkan scroll vertikal jika konten melebihi */
        scrollbar-width: none; /* Sembunyikan scrollbar di Firefox */
        -ms-overflow-style: none; /* Sembunyikan scrollbar di Internet Explorer */
}
.scrollable::-webkit-scrollbar {
        display: none; /* Sembunyikan scrollbar di Chrome, Safari, dan Edge */
}
.header_popup {
        padding: 10px;
        height: auto; /* Tinggi penuh viewport */
        justify-content: center; /* Mengatur konten di tengah secara horizontal */
        align-items: center; /* Mengatur konten di tengah secara vertikal */
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--warna_text_header_popup);
        background-color: var(--warna_header_popup);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.footer_popup {
		display: flex; /* Menggunakan Flexbox */
		justify-content: center; /* Konten di tengah secara horizontal */
		gap: 5px;
        text-align: center;
        padding: 10px;
        height: auto; /* Tinggi penuh viewport */
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--warna_text_header_popup);
        background-color: var(--warna_footer_popup);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.table-stripeds {
        width: 100%;
        height: 100%; /* Tinggi penuh viewport */
}
.table-stripeds th {
        
        color: white; /* Warna teks header */
        text-align: left; /* Perataan teks */
        padding: 10px; /* Padding */
}
/* Gaya baris tabel */
.table-stripeds td {
        padding: 10px; /* Jarak dalam sel */
}
/* Warna strip untuk baris */
.table-stripeds tr:nth-child(even) {
        background-color: #b9e2e7; /* Warna baris genap */
}
.table-stripeds tr:nth-child(odd) {
        background-color: #caf2f6; /* Warna baris ganjil */
}
/* Hover efek untuk baris */
.table-stripeds tr:hover {
        background-color: #e0e0e0; /* Warna saat kursor di atas baris */
        cursor: pointer; /* Ganti kursor saat hover */
}
/* Gaya untuk baris yang dipilih */
.table-stripeds tbody tr.selected {
        background-color: #4fb5df; /* Warna latar belakang saat dipilih */
        color: white; /* Warna teks saat dipilih */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.pulsating-ring {
        background-image: url(../../image/target.png);
        background-size: 80%; /* Menyesuaikan ukuran gambar target */
        background-position: center; /* Posisikan gambar di tengah */
        background-repeat: no-repeat; /* Jangan ulang gambar */
        width: 40px;
        height: 40px;
        border: 6px solid rgba(9, 244, 255, 0.9);
        border-radius: 50%;
        animation: pulse 1.5s infinite;
        box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
}


.marker_posisi {
	width: 40px;
	height: 40px;
	border: 6px solid rgba(9, 244, 255, 1);
	border-radius: 50%;
	animation: pulse 1.5s infinite;
	box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
	background-image: url(../../image/ico_g_6.png);
	background-size: 100%; /* Menyesuaikan ukuran gambar target */
    background-position: center; /* Posisikan gambar di tengah */
    background-repeat: no-repeat; /* Jangan ulang gambar */
}
.marker_terdekat {

        width: 40px;
        height: 40px;
        border: 6px solid rgba(251, 9, 255, 1);
        border-radius: 50%;
        animation: pulse 1.5s infinite;
        box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
	background-image: url(../../image/ico_g_7.png);
	background-size: 100%; /* Menyesuaikan ukuran gambar target */
    background-position: center; /* Posisikan gambar di tengah */
    background-repeat: no-repeat; /* Jangan ulang gambar */
}
.marker_spot {

        width: 40px;
        height: 40px;
        border: 6px solid rgba(255,0, 0, 1);
        border-radius: 50%;
        animation: pulse 1.5s infinite;
        box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
	background-image: url(../../image/ico_g_9.png);
	background-size: 100%; /* Menyesuaikan ukuran gambar target */
    background-position: center; /* Posisikan gambar di tengah */
    background-repeat: no-repeat; /* Jangan ulang gambar */
}

@keyframes pulse {
        0% {
                transform: scale(0.2);
                opacity: 1;
        }
        50% {
                transform: scale(1.5);
                opacity: 0.5;
        }
        100% {
                transform: scale(0.2);
                opacity: 1;
        }
}


    .table_video {
      width: 100%;

      text-align: center;
    }
    .td_video  {
    position: relative;
    height: 330px; /* Tinggi tetap */
    background-color: #000000; /* Warna latar belakang */
    overflow: hidden;

	
    }
#videoContainer {
  position: relative;
  width: 100%;
  height: 100%; /* Sesuai dengan tinggi td */
  background-color: #000000; /* Gaya latar belakang */
  display: flex;
  justify-content: center; /* Menyelaraskan elemen video secara horizontal */
  align-items: center; /* Menyelaraskan elemen video secara vertikal */
}

.my_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* Lebar tetap */
    height: auto; /* Tinggi tetap */
    background-color: #000;
 	display: none;
}

.my_video::-webkit-media-controls {
  display: none !important; /* Hilangkan kontrol video di browser berbasis WebKit */
}
    .scan-area {
      position: absolute;
          top: 0%;
    left: 0%;
      width: 100%; /* Ukuran gambar relatif terhadap kontainer */
      height: 100%;
      z-index: 2; /* Lapisan lebih tinggi dari video */
    }


/* Animasi garis pindai */
@keyframes scanAnimation {
  0% {
    top: 10%;
  }
  50% {
    top: 85%;
  }
  100% {
    top: 10%;
  }
}

.scan-line {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 5%; /* Lebar relatif garis pindai */
  background-image: url("../../image/anibar-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: scanAnimation 4s ease-in-out infinite;
  display: block;
}
.garis-area {
	position: absolute;
	top: 25%;
	bottom: 25%;
	left: 15%;
	width: 70%;
	height: 100%;
    display: flex;
    justify-content: center;

}
.sementara {
  width: 100%;
  height: auto;
  display: block;
}

#view_foto
{
	display:none;
	width:80%;
	border: 1px solid #ffffff; /* Border dalam */
    box-shadow: 0 0 0 6px #76c8d1; /* Border luar */
    border-radius: 0px; /* Opsional: Membuat sudut tumpul */
	outline: none;
	border-radius: 0px;
}
.kom_foto
{
	width:100%;
	border: 1px solid #ffffff; /* Border dalam */
	outline: none;

}

.box_galeri {
      width: 100%; /* Lebar box 100% */
      height: auto; /* Tinggi box otomatis menyesuaikan konten */
      margin-top: 5px; /* Jarak atas 15px */
      /* margin-bottom: 20px;Jarak bawah opsional (contoh: 20px) */
      padding: 4px; /* Ruang di dalam box (opsional) */
      background-color: #d8eaf0; /* Warna latar belakang (opsional) */
      border: 1px solid #a2c3cf; /* Garis tepi box (opsional) */
      border-radius: 0px; /* Sudut melengkung (opsional) */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Efek bayangan (opsional) */
    }
	
.title_hasil {
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: var(--warna_title_hasil);
		font-style: italic;
		text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}
.isi_hasil {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 600;
    color: var(--warna_isi_hasil);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	
}

.pos_tengah {

    display: flex;
    justify-content: center; /* Horizontal alignment */
    align-items: center;    /* Vertical alignment */
}
.pop_card
{
	cursor:pointer;
	background-color:#eaf6ff
};
.kotak
{
	border: 1px solid #9cb9b8;
}
.warna_card-header
{
	background-color: #bfdcec;
}

#card {

	border-radius: 0px;
}


.card-body {
    background-color: #ffffff; /* Sesuaikan dengan warna kartu */
    border-radius: 8px;
    padding: 10px;
	border-radius: 0px;
}

.input_bodycard {

    border: none;
	height: 50px;
    background-color: rgba(0, 0, 0, 0.00); /* Sedikit transparan agar menyatu */
padding: 10px;
    outline: none;
	font-size: 18px;
	font-weight: 600;

}
.input_bodycard input::placeholder {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 600;
    color: #000000;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.input_center:focus {

}
.full_frame
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;   /* Lebar penuh sesuai layar */
    height: 100vh;  /* Tinggi penuh sesuai layar */
    background-color: #000;
 	display: none;
	z-index: 2000; /* Di bawah popup */
}

.full_frame .frame_kamera {
    position: relative; /* Membuat posisi relatif sebagai referensi */
    width: 100vw;   /* Lebar penuh sesuai layar */
    height: 100vh;  /* Tinggi penuh sesuai layar */
	background-color: #000000;
	display: flex;
    justify-content: center;
    align-items: center;
     overflow: hidden; /* Untuk memastikan video tidak keluar dari kontainer */
			
}
.full_frame .frame_kamera .tombol_resolusi{
    position: absolute;
    top: 50px;  /* Jarak dari bawah 50px */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    text-align: center;
	height: 50px;
	width: 100%;
	
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Jarak antar tombol */
			
}

.full_frame .frame_kamera .tombol_kamera{
    position: absolute;
    bottom: 50px;  /* Jarak dari bawah 50px */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    text-align: center;
	height: 50px;
	width: 100%;
	
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Jarak antar tombol */
			
}
.circle-button {
    width: 60px;  
    height: 60px;  
    background-color: rgba(22, 137, 179, 0.5); /* Warna hitam dengan opacity 50% */
    border: none;
    border-radius: 50%; /* Membuat tombol berbentuk lingkaran */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.circle-button:hover {
    background-color: rgba(164, 105,20, 0.7); /* Opacity meningkat saat hover */
}

.circle-button i {
    color: white;
    font-size: 24px; /* Ukuran ikon */
}
.circle-button span {
    color: white;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 600;
    color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.box_thn_ikan
{
	display: block; /* Membuat gambar menjadi elemen blok */

  	width: 100%; /* Mengatur lebar gambar */
  	height: auto; /* Menjaga rasio aspek gambar */
 	margin-left: auto; /* Margin otomatis di kiri */
  	margin-right: auto; /* Margin otomatis di kanan */
	cursor:pointer;

}
.box_view_ikan
{

	width: 100%; /* Mengatur lebar gambar menjadi 100% dari lebar td */
 	 height: auto; /* Menjaga rasio aspek gambar */
  	display: block; /* Menjadikan gambar sebagai elemen blok untuk memudahkan pemusatan */
  	margin: 0 auto; /* Memusatkan gambar secara horizontal */
display: block; 
}
.td_gambar{
	
	text-align: center; /* Menyelaraskan konten dalam td secara horizontal */
  	vertical-align: middle; /* Menyelaraskan konten dalam td secara vertikal */
			
}

.btn-awal {
 		font-family: "Roboto", sans-serif;
		font-size: 10px; /* Ukuran font */
  		font-weight: 400; /* Ketebalan normal */
  		line-height: 1.5; /* Spasi antar baris */

       
        /* Gunakan Flexbox untuk tata letak ikon dan teks */
        align-items: center;
        /* Rata vertikal ikon dan teks */

        /* Jarak antara ikon dan teks */
        display: inline-block;
        padding: 30px 40px;
        background-color: var(--warna_tombol_dasar);
        /* Warna khas Android (Material Design) */
        color: white;

        text-align: center;
        border: none;
        border-radius: 24px;
        /* Membuat tombol oval */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        /* Bayangan */
        cursor: pointer;
  		border-color: #515151;
		white-space: nowrap; 
}
.btn-awal:hover {
  color: #fff;
  background-color: #144678;
  border-color: #545b62;
}
	
.push-button {
      transition: transform 0.2s ease-in-out;
    }

    .push-button:hover {
      transform: scale(1.1);
    }
.round {
  border-radius: 24px;
}

