* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f5f6f8;
    color: #1a1a1a;
    margin: 0;
    padding: 32px 16px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

h1 {
    margin: 0 0 4px;
    font-size: 24px;
}

.subtitle {
    color: #6b6b6b;
    margin: 0 0 8px;
    font-size: 14px;
}

.muted {
    color: #9a9a9a;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

th, td {
    text-align: left;
    padding: 12px 8px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    vertical-align: top;
}

th {
    color: #6b6b6b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.empty {
    text-align: center;
    color: #9a9a9a;
    padding: 32px 0;
}

.button {
    display: inline-block;
    padding: 6px 14px;
    background: #1565C0;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}

.button:hover {
    background: #0d47a1;
}

.map-link {
    font-size: 13px;
    color: #1565C0;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 16px;
    color: #1565C0;
    text-decoration: none;
    font-size: 14px;
}