body {
	/*background-color: #f4f7f6;*/
	background-color: #4785c5;
	margin-top: 30px;
}
.container {
	background: white;
	border-radius: 18px;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#status-messages-container {
       overflow-y: auto;
       margin-top: 10px;
       padding: 10px;
       max-height: 800px;
   }

   @media (max-width: 600px) {
       #status-messages-container {
           max-height: none;
       }
   }

h2 {
	color: #007bff; /* Warna judul */
	margin-bottom: 10px;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); /* Menambahkan bayangan teks */
	font-family: 'Arial', sans-serif; /* Font yang lebih modern */
	font-weight: bold; /* Membuat teks lebih tebal */
	text-align: center; /* Rata tengah judul */
	font-size: 2em; /* Ukuran font yang lebih besar */
}

/* Efek animasi pada judul */
h2:hover {
	text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}
.form-group label {
	color: #495057;
}

.form-row {
	display: flex;
	justify-content: space-between; /* Atau gunakan 'flex-start' untuk mendekatkan elemen */
	align-items: center; /* Menyelaraskan item secara vertikal */
}

.form-group {
	flex: 1; /* Membuat kedua div memiliki lebar yang sama */
	margin-right: 0px; /* Memberikan sedikit ruang antar elemen */
}

.form-group:last-child {
	margin-right: 0; /* Menghilangkan margin kanan pada elemen terakhir */
}

.form-control {
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease-in-out;
}

.form-control:focus {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.btn-primary {
	background-color: #007bff;
	border: none;
	border-radius: 20px;
	padding: 8px 24px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
	background-color: #0056b3;
}

.btn-danger {
	border-radius: 20px;
}
.processing-info {
	display: none;
	margin-top: 10px;
}
.form-check-label {
	margin-left: 5px;
	margin-right: 15px;
}
.form-check-input {
	accent-color: #007bff;
}

@media (min-width: 768px) {
	.right-column {
		border-left: 1px solid #eee;
		padding-left: 20px;
	}
	
	.right-column-min {
		border-left: 1px solid #eee;
		padding-left: 10px;
	}
}
.result-info {
	display: none;
	margin-top: 10px;
}
.error-info {
	display: none;
	margin-top: 10px;
}

.btn-info {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

/* Progress Bar Styles */
#progress {
	margin-top: 10px;
	margin-bottom: 20px;
	height: 20px;
	background-color: #f5f5f5;
	display: none;
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#progress-bar {
	width: 0;
	height: 100%;
	background: linear-gradient(to left, #ed9613, #fbea71);
	border-radius: 5px;
	background-size: 200% 100%;
	transition: width 0.5s ease-in-out;
	animation: progressAnimation 4s linear infinite;
	font-size: small;
}

@keyframes progressAnimation {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

@keyframes progressAnimation2 {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

.animated-background {
	background: linear-gradient(to left, #ffc107, #fdf3a7);
	background-size: 200% 100%;
	transition: width 0.5s ease-in-out;
	animation: progressAnimation 5s linear infinite;
}

.submit-container {
	display: flex;
	justify-content: left; /* Menyelaraskan horizontal ke tengah */
	align-items: center; /* Menyelaraskan vertikal ke tengah */
}


/* Status Message Styles */
.success-message {
	border: 1px solid #2ecc71;
	background-color: #e3ffef;
	padding: 10px;
	margin-top: 20px;
}

.failed-message {
	border: 1px solid #fd0282;
	background-color: #ffe3eb;
	padding: 10px;
	margin-top: 20px;
}

.process-message {
	border: 1px solid #c6cef5;
	background-color: #d7eaf8;
	padding: 10px;
	margin-top: 20px;
}

.subcontainer {
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease-in-out;
}

.subcontainer:hover {
	box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

.hidden {
	display: none;
}

.typing-icon {
	animation: blink-caret 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	color: #dc3545;
	text-transform: capitalize;
}

@keyframes blink-caret {
	0% {
		color: #dc3545;
	}
	50% {
		color: #fff;
	}
	100% {
		color: #0b56dd;
	}
}

@keyframes blink-caret2 {
	0% {
		color: orange;
	}
	50% {
		color: #fff;
	}
	100% {
		color: orange;
	}
}

/* OVERRIDE */
.modal-dialog {
	max-width: 800px !important;
}

.modal-content {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.modal-header {
	background-color: #f1f1f1;
	border-bottom: 1px solid #ddd;
}

.modal-footer {
	border-top: 1px solid #ddd;
}

.btn-outline-secondary {
	border-radius: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   transition: box-shadow 0.3s ease-in-out;
}

.form-control:disabled, .form-control[readonly] {
	/*background-color: #caddf1;*/
	opacity: 1;
	background: linear-gradient(326deg, #66aaf3, #d6fffd);
	background-size: 200% 100%;
}

/* Styling untuk tanda 'by Eriarmedia' */
.eriarmark {
	position: fixed;
	right: 10px;
	bottom: 10px;
	font-size: 12px;
	color: #007bff;
	z-index: 1000;
}

/* Style the tab */

.tab {
           display: flex;
           overflow: hidden;
           background-color: #f1f1f1;
           box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
           border-radius: 10px;
		margin-bottom: 10px;
       }

       .tab button {
           background-color: inherit;
           flex-grow: 1;
           border: none;
           outline: none;
           cursor: pointer;
           padding: 5px 5px;
           /*border-radius: 10px;*/
           position: relative;
           overflow: hidden;
           transition: color 0.3s ease;
           /*transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;*/
       }

       .tab button:hover {
           background-color: #ddd;
       }

       .tab button.active {
           color: white;
           /*background: linear-gradient(45deg, #ff9a9e, #fad0c4);*/
		background: linear-gradient(359deg, #007bff, #cee6ff);
           animation: backgroundMove 3s linear infinite;
		font-weight: 500;
       }

       @keyframes backgroundMove {
           0% { background-position: 0% 50%; }
           100% { background-position: 100% 50%; }
       }

       .tab button.active::after {
           content: "★"; 
           position: absolute;			
           left: 10px;
           top: 10px;
           color: #fff;
           animation: iconMove 2s linear infinite;
       }

       @keyframes iconMove {
           0%, 100% { transform: translateY(0); }
           50% { transform: translateY(-10px); }
       }

       .tabcontent {
           display: none;
           padding: 6px 12px;
           border-radius: 5px;
           box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
       }
	
.slider-container {
		width: 100%;
		/* text-align: center; */
	}

.slider {
	-webkit-appearance: none;  /* Override default CSS styles */
	appearance: none;
	width: 100%; /* Width of the slider */
	height: 15px; /* Height of the slider */
	background: #d3d3d3; /* Grey background */
	outline: none; /* Remove outline */
	opacity: 0.7; /* Set transparency (cross-browser) */
	-webkit-transition: .2s; /* 0.2 seconds transition on hover */
	transition: opacity .2s;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider:hover {
	opacity: 1; /* Fully opaque on hover */
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none; /* Override default look */
	appearance: none;
	width: 25px; /* Set a specific slider handle width */
	height: 25px; /* Slider handle height */
	background: #4CAF50; /* Green background */
	cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
	width: 25px; /* Set a specific slider handle width */
	height: 25px; /* Slider handle height */
	background: #4CAF50; /* Green background */
	cursor: pointer; /* Cursor on hover */
}

/* Style untuk latar belakang loading */
.loader-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
   transition: opacity 0.3s ease-in-out;
   opacity: 1;
}

/* Style untuk animasi loading */
.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;

}

.hiddenz {
    opacity: 0;
	/* transition: opacity 0.2s ease; */
}

	@keyframes spin {
	  0% { transform: rotate(0deg); }
	  100% { transform: rotate(360deg); }
	}

.loader-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 60px;
    background: linear-gradient(90deg, rgb(0 243 255 / 70%), rgb(243 7 138 / 95%), rgba(46, 204, 113, 0.7), rgba(255, 249, 48, 0.7));
    background-size: 300% 300%;
    /* -webkit-background-clip: text; */
    background-clip: text;
    color: transparent;
    /* animation: Gradient 3s linear infinite; */
    animation: progressAnimation3 4s linear infinite;
    transition: width 0.5s ease-in-out;
	/*text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);*/
}

@keyframes progressAnimation3 {
    0%, 100% {
        background-position: 200% 0;
    }
    100% {
        background-position: -100% 100%;
    }
}

@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Gaya untuk modal */
#inputModal .form-group {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    display: flex;
	/*flex-wrap: wrap;*/
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

#inputModal .form-group:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Gaya untuk input di dalam form-group */
#inputModal .form-group .form-control {
    margin-right: 10px;
    flex-grow: 1;
    /*border: none;*/
    outline: none;
    /*padding: 5px;*/
    background: transparent;
    /*border-radius: 6px;*/
}

/* Gaya untuk tombol delete */
#inputModal .delete-icon {
    cursor: pointer;
    color: #dc3545; /* Warna merah untuk tombol delete */
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
}

#inputModal .delete-icon:hover {
    color: #c82333;
}

/* Gaya untuk tombol Add */
#inputModal #addSetButton {
    background-color: #007bff;
    color: white;
    /*border: none;*/
    margin-bottom: 15px;
    padding: 10px 20px;
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
}

#inputModal #addSetButton:hover {
    background-color: #0056b3;
}

#inputModal .domain-entry {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#inputModal .domain-entry:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

#inputModal .input-group {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 5px 10px;
    margin-bottom: 10px;
    width: 100%; /* Pastikan mengambil lebar penuh */
}

#inputModal .input-group .icon {
    color: #007bff;
    font-size: 20px;
    margin-right: 10px;
}

#inputModal .input-group .form-control {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px;
}

/* Set lebar awal dan kemampuan tumbuh untuk setiap input */
#inputModal .domain-input {
    flex-basis: 40%; /* 40% dari container */
    flex-grow: 4;
}

#inputModal .username-input,
#inputModal .password-input {
    flex-basis: 30%; /* 30% dari container */
    flex-grow: 3;
}

#inputModal .btn-delete {
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#inputModal .btn-delete:hover {
    background-color: #c82333;
}

.containerr {
    position: relative; /* Kontainer relatif untuk positioning elemen di dalamnya */
}

@media (max-width: 768px) {
    .containerr {
        display: none;
    }
}

.floating-image {
    position: absolute; /* Mengatur posisi absolut agar bisa 'mengambang' */
    z-index: 1; /* Membuat gambar berada di belakang teks */
    top: -22px;
    left: 0px; /* Atur posisi kiri */
    height: 110px; /* Menjaga rasio aspek */
	cursor: pointer;
}

.text-content-cri {
	width: 70px; /* Sesuaikan lebar ini sesuai kebutuhan */
	line-height: 20px;
	top:5px;
    /*word-wrap: break-word;*/
	text-align: center;
    margin-left: 60px; /* Sesuaikan dengan lebar gambar yang mengambang */
    position: absolute;/*relative;*/
    z-index: 1;
    font-size: small;
    color: #00BFFF;
    text-shadow: 1px 1px 10px #4785c5;
    font-family: 'Arial', sans-serif;
    animation: waveAnimation 3s ease-in-out infinite;
	transition: opacity 0.5s ease-in-out;
    opacity: 1;
	cursor: pointer;
}

.text-content-cri-tutorial {
	/* width: 150px; */
	line-height: 20px;
    /*word-wrap: break-word;*/
	text-align: center;
    margin-left: 60px; /* Sesuaikan dengan lebar gambar yang mengambang */
    position: absolute;/*relative;*/
    z-index: 1;
    font-size: small;
    color: #00BFFF;
    text-shadow: 1px 1px 10px #4785c5;
    font-family: 'Arial', sans-serif;
    /* animation: waveAnimation 3s ease-in-out infinite; */
	transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.hidden-text {
    opacity: 0;
}

.no-wave-animation {
    animation: none !important;
}

.floating-image-2 {
    position: absolute; /* Mengatur posisi absolut agar bisa 'mengambang' */
    z-index: 1; /* Membuat gambar berada di belakang teks */
    top: -25px; /* Atur posisi atas */
    left: 0px; /* Atur posisi kiri */
    /*width: 100%; /* Lebar gambar */
    height: 130px; /* Menjaga rasio aspek */
}


.text-content-cri-2 {
	width: 70px; /* Sesuaikan lebar ini sesuai kebutuhan */
	line-height: 20px;
    /*word-wrap: break-word;*/
	text-align: center;
    margin-left: 60px; /* Sesuaikan dengan lebar gambar yang mengambang */
    position: absolute;/*relative;*/
    z-index: 1;
    font-size: small;
    color: #00BFFF;
    text-shadow: 1px 1px 10px #4785c5;
    font-family: 'Arial', sans-serif;
    animation: waveAnimation 3s ease-in-out infinite;
	transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

/* Animasi ombak (jika Anda masih menggunakannya) */
@keyframes waveAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-image-loader {
    /*position: absolute; /* Mengatur posisi absolut agar bisa 'mengambang' */
    z-index: 1; /* Membuat gambar berada di belakang teks */
    top: 0px; /* Atur posisi atas */
    left: 0; /* Atur posisi kiri */
    width: 130px; /* Lebar gambar */
    height: auto; /* Menjaga rasio aspek */
}

/*.gallery-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.gallery-item {
	flex: 1 1 calc(33.33% - 10px);
	overflow: hidden;
	position: relative;
	height: 200px;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
@media (max-width: 600px) {
	.gallery-item {
		flex: 1 1 calc(50% - 10px);
	}
}
@media (max-width: 400px) {
	.gallery-item {
		flex: 1 1 100%;
	}
}*/
