#map {
	width: 100%;
	height: 260px;
	border-radius: 10px;
}

@media (min-width: 768px) {
	#map {
		height: 380px;
	}
}

.step-content {
	animation: fade 0.3s ease;
}
@keyframes fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

#stepIndicator {
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	text-align: center;
}
#stepIndicator span {
	font-size: 12px;
}
@media (min-width: 768px) {
	#stepIndicator span {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.form-label {
		font-size: 13px;
	}
}

.step-item {
	padding: 6px 10px;
	border-radius: 20px;
	background: #e9ecef;
	color: #6c757d;
	white-space: nowrap;
}

.step-item.active {
	background: #0d6efd;
	color: #fff;
}

@media (max-width: 576px) {
	.step-item {
		font-size: 12px;
		padding: 5px 8px;
	}
}

@media (max-width: 576px) {
	.form-control,
	.form-select {
		font-size: 14px;
	}
}

.preview-box {
	margin-top: 8px;
}

.preview-box img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
}

input[type="file"] {
	font-size: 13px;
}

#lokasiWrapper {
	transition: all 0.3s ease;
}

.sidebar .nav-link {
	font-size: 0.95rem;
	transition: all 0.3s;
	border-radius: 8px;
	margin: 2px 10px;
}
.sidebar .nav-link:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff !important;
}
.sidebar .nav-link.active {
	background: #0d6efd;
	box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}
