.tnt-wrap {
	max-width: 800px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: #eef0f4;
	padding: 18px;
	border-radius: 24px;
}

.tnt-wrap * {
	box-sizing: border-box;
}

.tnt-search-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border-radius: 999px;
	padding: 6px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.tnt-wrap input.tnt-search-input {
	flex: 1;
	min-width: 0;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	font-size: 16px;
	line-height: normal;
	padding: 15px 10px 15px 22px;
	background: transparent !important;
	color: #3a3a3a !important;
	height: auto !important;
	margin: 0;
}
.tnt-wrap input.tnt-search-input::placeholder {
	color: #b7ada0;
}

.tnt-wrap button.tnt-nearby-pill {
	display: flex !important;
	align-items: center;
	gap: 8px;
	border: none !important;
	background: #163d2c !important;
	background-image: none !important;
	color: #ffffff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.03em;
	padding: 15px 24px !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	text-shadow: none !important;
	line-height: normal;
	height: auto !important;
	width: auto !important;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	margin: 0;
	transition: background 0.15s ease;
}
.tnt-wrap button.tnt-nearby-pill svg {
	flex-shrink: 0;
}
.tnt-wrap button.tnt-nearby-pill:hover {
	background: #0e2b1e !important;
	color: #ffffff !important;
}
.tnt-wrap button.tnt-nearby-pill:disabled {
	opacity: 0.6;
	cursor: default;
}

.tnt-result-meta {
	font-size: 13px;
	color: #777;
	margin: 18px 0 8px;
}

.tnt-empty, .tnt-loading, .tnt-hint {
	padding: 20px;
	text-align: center;
	color: #888;
	font-size: 14px;
}

.tnt-table-scroll {
	overflow-x: auto;
	border: 1px solid #e7e3d8;
	border-radius: 8px;
	background: #fff;
	margin-top: 6px;
}

.tnt-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
	white-space: nowrap;
}
.tnt-table thead th {
	background: #f2f6f3;
	color: #556358;
	font-weight: 600;
	text-align: left;
	padding: 10px 14px;
	border-bottom: 1px solid #e7e3d8;
	position: sticky;
	top: 0;
}
.tnt-table tbody td {
	padding: 10px 14px;
	border-bottom: 1px solid #f0ede5;
	color: #262521;
}
.tnt-table tbody tr:last-child td {
	border-bottom: none;
}
.tnt-table tbody tr:hover {
	background: #fbfaf6;
}
.tnt-table .tnt-strong {
	font-weight: 600;
}
.tnt-empty-cell {
	color: #c7c2b4;
}
.tnt-map-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #1f5c3f;
	font-weight: 500;
	text-decoration: none;
}
.tnt-map-link:hover {
	text-decoration: underline;
}
.tnt-distance {
	color: #1f5c3f;
	font-weight: 600;
}

@media (max-width: 560px) {
	.tnt-wrap { padding: 12px; border-radius: 18px; }
	.tnt-search-bar { flex-wrap: wrap; border-radius: 20px; padding: 10px; }
	.tnt-wrap input.tnt-search-input { flex-basis: 100%; padding: 8px 6px; font-size: 15px; }
	.tnt-wrap button.tnt-nearby-pill { flex: 1; justify-content: center; }
	.tnt-table { font-size: 13px; }
	.tnt-table thead th, .tnt-table tbody td { padding: 8px 10px; }
}
