body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #1f2937;
    color: #fff;
}

.sidebar {
    position: fixed;
    width: 240px;
    height: 100vh;
    background: #111827;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar h2 {
    margin-bottom: 40px;
}

.sidebar a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.sidebar a:hover {
    background: #374151;
}

.content {
    margin-left: 240px;
    padding: 30px;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #111827;
    padding: 24px;
    border-radius: 14px;
    min-width: 260px;
    border: 1px solid #243244;
}

.card-label {
    color: #9ca3af;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card-value {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.page-subtitle {
    color: #9ca3af;
    margin-top: -8px;
}

.sync-card,
.section-card {
    background: #111827;
    border: 1px solid #243244;
    border-radius: 14px;
    padding: 20px;
}

.sync-card {
    min-width: 260px;
    text-align: right;
}

.sync-label {
    color: #9ca3af;
    font-size: 12px;
    text-transform: uppercase;
}

.sync-time {
    font-size: 20px;
    font-weight: 700;
    margin-top: 6px;
}

.sync-meta {
    color: #9ca3af;
    font-size: 12px;
    margin-top: 6px;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 18px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.data-table th,
.data-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #243244;
    text-align: left;
    white-space: nowrap;
}

.data-table th {
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
}

.data-table td {
    color: #ffffff;
}