        body {
            font-family: Arial, sans-serif;
            background: #f4f6f8;
            margin: 0;
            padding: 0;
        }
        .container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 32px;
        }
        .dashboard {
            max-width: 400px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 24px;
            flex: 1;
        }
        h2 {
            text-align: center;
            margin-bottom: 24px;
            color: #333;
            font-weight: bold;
            font-size: 1.6em;
        }
        ul {
            list-style: none;
            padding: 0;
        }
        li {
            margin-bottom: 16px;
        }
        a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: #1976d2;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.2s;
            text-align: center;
            font-weight: bold;
            justify-content: center;
        }
        a:hover {
            background: #1565c0;
        }
        .local-links {
            margin-top: 8px;
            font-size: 0.95em;
        }
        .local-links a {
            background: #455a64;
            margin-left: 6px;
            font-weight: normal;
            padding: 6px 10px;
        }
        .local-links a:hover {
            background: #263238;
        }