2026-03-18 13:21:19 +01:00
|
|
|
body {
|
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background: #f5f5f5;
|
|
|
|
|
color: #222;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page {
|
|
|
|
|
max-width: 1100px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
color: #555;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-bar input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-bar button,
|
|
|
|
|
.card button,
|
|
|
|
|
.detail-card button {
|
|
|
|
|
padding: 10px 14px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.layout {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
gap: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.results {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card {
|
|
|
|
|
border: 1px solid #d8d8d8;
|
|
|
|
|
background: white;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card h3 {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail-card {
|
|
|
|
|
border: 1px solid #d8d8d8;
|
|
|
|
|
background: white;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
2026-03-18 13:44:30 +01:00
|
|
|
|
2026-03-18 13:25:23 +01:00
|
|
|
.detail-card hr {
|
|
|
|
|
margin: 18px 0;
|
|
|
|
|
border: none;
|
|
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
|
}
|
2026-03-18 14:17:03 +01:00
|
|
|
|
|
|
|
|
.compare-controls {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 20px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare-controls input,
|
|
|
|
|
.compare-controls select {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
min-width: 140px;
|
|
|
|
|
}
|
2026-03-18 13:25:23 +01:00
|
|
|
|
|
|
|
|
.detail-card h2,
|
|
|
|
|
.detail-card h3 {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail-card p {
|
|
|
|
|
margin: 8px 0;
|
|
|
|
|
}
|
2026-03-18 14:17:03 +01:00
|
|
|
|
2026-03-18 13:21:19 +01:00
|
|
|
.map-box {
|
2026-03-18 13:44:30 +01:00
|
|
|
overflow: hidden;
|
2026-03-18 13:21:19 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-18 13:44:30 +01:00
|
|
|
.map {
|
2026-03-18 13:21:19 +01:00
|
|
|
height: 420px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-18 14:17:03 +01:00
|
|
|
.compare-controls {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 20px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare-controls input,
|
|
|
|
|
.compare-controls select {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
min-width: 140px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-18 13:21:19 +01:00
|
|
|
.message {
|
|
|
|
|
padding: 12px;
|
|
|
|
|
background: white;
|
|
|
|
|
border: 1px solid #d8d8d8;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
2026-03-18 13:44:30 +01:00
|
|
|
|
|
|
|
|
.chart-container {
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chart-title {
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2026-03-18 13:21:19 +01:00
|
|
|
|
|
|
|
|
@media (min-width: 900px) {
|
|
|
|
|
.layout {
|
|
|
|
|
grid-template-columns: 1.2fr 1fr;
|
|
|
|
|
align-items: start;
|
|
|
|
|
}
|
|
|
|
|
}
|