:root {
	--primary-color: rgb(0, 190, 188);
	--primary-hover: rgba(0, 190, 188, 0.8);
	--dark-bg: #252526;
	--text-light: #f8f9fa;
	--text-muted: #adb5bd;
}

body {
	background: url('uro_bg.jpg') no-repeat center bottom fixed;
	background-size: cover;
	min-height: 100vh;
	font-family: 'Roboto', -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
}

.overlay {
	background-color: rgba(255, 255, 255, 0);
	flex: 1;
}

.navbar {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
	height: 40px;
}

.search-container {
	position: relative;
	margin-bottom: 1.5rem;
}

#suggestions {
	position: absolute;
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	background-color: white;
}

.suggestion-item {
	padding: 0.75rem 1.25rem;
	cursor: pointer;
	transition: all 0.2s ease;
	border-bottom: 1px solid #eee;
}

.suggestion-item:hover, .suggestion-item.active {
	background-color: var(--primary-color);
	color: white;
}

.continue-hint {
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	color: var(--text-muted);
	background-color: #f8f9fa;
	border-top: 1px solid #dee2e6;
}

.no-results {
	padding: 0.75rem 1.25rem;
	color: #dc3545;
	background-color: #f8f9fa;
}

#result {
	margin-top: 2rem;
	display: none;
	border-left: 4px solid var(--primary-color);
	border-radius: 8px;
	transition: all 0.2s ease;
}

.main-card {
	border-radius: 12px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
	border: none;
	overflow: visible;
	transition: all 0.2s ease;
}

.main-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lk-link {
	background-image: url(uro_lk.svg);
	font-size: 0;
	width: 32px;
	height: 32px;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.lk-link:hover {
	background-image: url(uro_lk_hover.svg);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	padding: 0.5rem 1.5rem;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.btn-primary:hover {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
}

.form-control {
	padding: 0.75rem 1rem;
	border-radius: 8px;
	border: 1px solid #ced4da;
	transition: all 0.2s ease;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(72, 193, 184, 0.25);
}

#ls-result {
	color: var(--primary-color);
}

.card-title a {
	color: var(--primary-color);
}

footer {
	background-color: var(--dark-bg);
	color: var(--text-light);
	padding: 3rem 0 1.5rem;
	margin-top: auto;
}

.footer-logo {
	height: 100px;
}

.footer-title {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: white;
	font-weight: 600;
}

.footer-contact-item {
	margin-bottom: 1rem;
}

.footer-link {
	color: var(--text-muted);
	text-decoration: none;
	transition: all 0.2s ease;
	display: block;
	margin-bottom: 0.5rem;
}

.footer-link:hover {
	color: var(--primary-color);
}

.footer-bottom {
	padding-top: 1.5rem;
	margin-top: 1rem;
	color: var(--text-muted);
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.footer-col {
		margin-bottom: 2rem;
	}
}

#search-button {
	border-radius: 0 8px 8px 0;
	padding: 0.75rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.input-group .form-control {
	border-radius: 8px 0 0 8px;
}

#address-result {
	padding-bottom: 0.5rem;
	font-size: 1.1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

#suggestions {
  animation: fadeIn 0.2s ease-out forwards;
}

#suggestions[style*="display: none"] {
  animation: fadeOut 0.2s ease-out forwards;
}

#result {
  animation: scaleIn 0.2s ease-out forwards;
}

#result[style*="display: none"] {
  animation: fadeOut 0.2s ease-out forwards;
}

#search-button:active {
  transform: scale(0.95);
}