* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
}

a {
    color: #93c5fd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1500px, 95%);
    margin: 0 auto;
}

.site-header {
    background: #111827;
    border-bottom: 1px solid #1f2937;
    padding: 16px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

nav a {
    margin-left: 16px;
}

.site-footer {
    border-top: 1px solid #1f2937;
    margin-top: 40px;
    padding: 20px 0;
    color: #9ca3af;
}

.card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.map-card {
    margin: 0;
}

@media (max-width: 1200px) {
    .map-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
}

h1, h2, h3 {
    color: #fff;
}

input, textarea, select, button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #0b1220;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 16px;
}

button {
    background: #2563eb;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #1d4ed8;
}

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

.table th,
.table td {
    border-bottom: 1px solid #1f2937;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
}

.badge-live {
    background: #065f46;
    color: #d1fae5;
}

.badge-hidden {
    background: #7f1d1d;
    color: #fee2e2;
}

.actions a {
    margin-right: 12px;
}
