
:root{
  --citycolor:#efe4b0;
  --stationcolor:#007a33;
  --bg:#ffffff; --card:#f7f7f9; --accent:#c62828; --text:#111;
  --muted:#666; --radius:10px; --shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.news-widget {
  max-width: 360px;
  margin: 0px auto;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  min-height: 200px;
  display: block !important;
  visibility: visible !important;
}

.widget-header {
  display: flex !important;
  align-items: center;
  background: var(--stationcolor, #007a33) !important;
  color: white !important;
  padding: 10px;
  min-height: 60px;
}

.widget-header .newslogo {
  height: 64px;
  margin-right: 10px;
}

.news-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.news-item {
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item a {
  text-decoration: none;
  color: #333;
  display: block;
}

.news-item a:hover {
  text-decoration: underline;
}

.news-time {
  font-size: 0.8em;
  color: #666;
  margin-top: 4px;
}

.widget-footer {
  padding: 10px;
  text-align: center;
  background: #e9e9e9;
}

.widget-footer a {
  color: #0055a5;  /* match header accent */
  text-decoration: none;
  font-size: 0.9em;
}

.widget-footer a:hover {
  text-decoration: underline;
}

/* Business Directory Widget */
.business-directory {
  max-width: 360px;
  margin: 20px auto 0;
  background: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.business-category {
  margin-bottom: 15px;
  background: white;
  border-radius: 6px;
  overflow: hidden;
}

.category-header {
  background: var(--citycolor);
  color: #333;
  padding: 8px 12px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}

.business-item {
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.business-item:hover {
  background-color: #f0f0f0;
}

.business-item img {
  width: 60px;
  height: 40px;
  object-fit: contain;
  border-radius: 3px;
  margin-bottom: 4px;
  border: 1px solid #eee;
}

.business-item a {
  text-decoration: none;
  color: #333;
  display: block;
}

.business-name {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2px;
}
