:root {
  --primary-color: #00B3BE;
  --primary-dark: #0f6d63;
  --text-dark: #212121;
  --text-muted: #757575;
  --background-light: #f4f6f8;
  --surface-color: #F9F7F5;
  --card-bg: #ffffff;
  --border-light: #e5e5e5;
  --border-gray: #d9d9d9;
  --max-width: 1200px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-family			: "Archivo", sans-serif;
	--default-font			: "DM Sans", sans-serif;  
  --border-radius: 10px;
}

* { 
  box-sizing: border-box; 
}

html, body { 
  height: 100%; 
  margin: 0; 
  font-family: var(--font-family); 
  background: var(--background-light); 
  color: var(--text-dark); 
  font-size: 16px;
  line-height: 1.5;
}

/* Typography */
.title-lg { 
  font-size: 28px; 
  font-weight: 700; 
  margin-bottom: 8px; 
  color: var(--text-dark);
}

.muted { 
  color: var(--text-muted); 
  margin-bottom: 12px; 
  font-size: 14px;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* Buttons */
.btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.2s, transform 0.1s;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Inputs */
input {
  font-family: var(--font-family);
  font-size: 14px;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: border-color 0.2s;
}

input:focus {
  outline: none;
  border-color: var(--primary-color);
}
.collapsed-info {
  padding-left: 20px;
}

.title-row .distance {
  margin-left: auto;
  margin-right: 10px;
  min-width: 70px;
}

.distance-value.distance-selected {
  font-style: italic;
  font-weight: 700;
  color: var(--primary-dark);
}
.open-distance-row {
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  color: #999;
}

.phone {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone a {
  text-decoration: none;
  color: inherit;
}

.hours {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
}
