.wrapper {
	position: relative;
	color: grey;
	margin-top: 20px;
}

.wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	/* biar sepanjang tinggi parent */
	left: 34px;
	/* posisi di tengah */
	width: 2px;
	background-color: rgba(128, 128, 128, 0.5);
	z-index: -999;
}

/*fab*/
.floating-btn {
	position: fixed;
	bottom: 100px;
	right: 10px;
	background-color: transparent;
	color: white;
	border: none;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	cursor: pointer;
	transition: transform 0.3s ease;
	z-index: 999;
}

.floating-btn:hover {
	transform: scale(1.1);
}

/* Tombol kecil (sub-button) */
.fab-item {
	position: fixed;
	right: 25px;
	bottom: 110px;
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0;
	transform: translateY(0);
	transition: all 0.3s ease;
	z-index: 998;
}

.sub-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background-color: #D9EEF0;
	color: #4EACB2;
	font-size: 22px;
	cursor: pointer;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
	transition: background-color 0.3s;
}

.sub-btn:hover {
	background-color: #555;
}

.fab-title {
	background-color: white;
	font-weight: 600;
	color: grey;
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 14px;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(10px);
	transition: all 0.3s ease;
}

/* Ketika ditampilkan */
.show .fab-item {
	opacity: 1;
}

.show .fab-item:nth-child(2) {
	transform: translateY(-70px);
}

.show .fab-item:nth-child(3) {
	transform: translateY(-140px);
}

.show .fab-item:nth-child(4) {
	transform: translateY(-210px);
}

.show .fab-item:nth-child(5) {
	transform: translateY(-280px);
}

/* Title muncul bersamaan */
.show .fab-title {
	opacity: 1;
	transform: translateX(0);
}

/*isi result*/
.tgl-batal {
	margin-bottom: 20px;
}

.row-admin {
	width: calc(100%);
	margin: auto;
	margin-bottom: 20px;
}

.col-awal {
	flex: 0 0 auto;
	width: 70px;
	margin-bottom: -10px;
}

.col-kedua {
	flex: 0 0 auto;
	width: calc(100% - 60px);
	margin-bottom: -10px;
	margin-left: -10px;
}

.chat-header {
	margin-top: 6px;
	font-size: 14px;
}

.header-bold {
	color: #4EACB2;
	font-weight: 500;
}

.tgl-mitra {
	font-size: 12px;
	margin-top: -10px;
	font-weight: 500;
}

.tgl-cs {
	font-size: 12px;
	margin-top: -15px;
	color: #4EACB2;
	font-weight: 500;
}

.text-status {
	font-size: 12px;
	margin-top: 11px;
}

.button-batal {
	border-radius: 50%;
	height: 40px;
	width: 40px;
	padding-top: 5px;
	color: #ff5757;
	background-color: #F7FAFC;
	border: 1px solid #ff5757;
	box-shadow: 0 4px 6px rgba(78, 172, 178, 0.2), 0 8px 16px rgba(0, 0, 0, 0.05);
}

.button-selesai {
	border-radius: 50%;
	height: 40px;
	width: 40px;
	padding-top: 5px;
	color: #F7FAFC;
	background-color: #4EACB2;
	border: none;
	box-shadow: 0 4px 6px rgba(78, 172, 178, 0.2), 0 8px 16px rgba(0, 0, 0, 0.05);
}

.body-status {
	width: 100%;
	background-color: #F7FAFC;
	border-radius: 10px;
	border-bottom: 2px solid #4EACB2;
	box-shadow: 0 4px 6px rgba(78, 172, 178, 0.2), 0 8px 16px rgba(0, 0, 0, 0.05);
	margin-left: 0px;
	margin-bottom: 10px;
}

.text-status-update {
	margin-top: -15px;
	color: #ff5757;
	font-size: 14px;
}

.col-button {
	text-align: right;
	margin-top: 10px;
	margin-bottom: 10px;
}

.pembatas {
	border-bottom: 1px solid #4EACB2;
}

.chat-header-cs {
	line-height: 1.2;
}

.text-status-selesai {
	margin-top: -15px;
	font-size: 14px;
	font-weight: 700;
}

.p-button {
	color: #F7FAFC;
	padding: 3px 4px 2px 4px;
	background-color: #4EACB2;
	border-radius: 50%;
	font-size: 10px;
}

.notif-blink {
	background-color: #F7FAFC;
	color: #4EACB2;
	animation: blink-bg 1s infinite;
	/* animasi berkedip tanpa henti */
}

@keyframes blink-bg {

	0%,
	100% {
		background-color: #F7FAFC;
		color: #4EACB2;
	}

	50% {
		background-color: #4EACB2;
		color: #F7FAFC;
	}

	/* warna lebih terang di tengah */
}

.row-cs {
	width: calc(100%);
	margin: auto;
	margin-bottom: 10px;
}

.btn-buat-laporan {
	border-radius: 10px;
	height: 49px;
	width: 49px;
	padding-top: 5px;
	color: #F7FAFC;
	background-color: #4EACB2;
	border: 1px solid #4EACB2;
	box-shadow: 0 4px 6px rgba(78, 172, 178, 0.2), 0 8px 16px rgba(0, 0, 0, 0.05);
	margin-left: -1px;
}

.col-btn {
	flex: 0 0 auto;
	width: 70px;
	margin-bottom: -10px;
}

.col-title {
	flex: 0 0 auto;
	width: calc(100% - 60px);
	margin-bottom: -10px;
	margin-left: -10px;
}

.col-title h6 {
	margin-top: 15px;
	font-size: 14px;
	color: #4EACB2;
	margin-bottom: 40px;
}

#result {
	overflow-x: hidden;
	overflow-y: scroll;
	max-height: calc(100vh - 200px);
}

/*<!-- CSS Custom Modal -->*/
.custom-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	text-align: left;
}

.custom-modal-content {
	background-color: #F7FAFC;
	margin: 5% auto;
	padding: 20px;
	border-radius: 10px;
	width: 350px;
}

.hidden {
	display: none;
}

.modal-footer {
	margin-top: 20px;
	text-align: right;
}

.custom-modal h2 {
	font-size: 16px;
	color: grey;
}

.custom-modal label {
	margin-top: 20px;
	font-size: 14px;
	color: grey;
}

.custom-modal input,
.custom-modal textarea,
.custom-modal select {
	font-size: 14px;
	border-radius: 10px;
	color: grey;
	border: 1px solid #4EACB2;
}

.custom-modal button {
	background-color: #4EACB2;
	color: white;
	border-radius: 10px;
	font-weight: 600;
}