* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: system-ui, -apple-system, sans-serif; background: #f5f5f5; color: #333; min-height: 100vh; }
.header { background: #1a237e; color: white; padding: 16px 24px; display: flex; align-items: center; gap: 12px; }
.header svg { flex-shrink: 0; }
.header h1 { font-size: 18px; font-weight: 500; }
.header nav { margin-left: auto; display: flex; gap: 16px; }
.header nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; }
.header nav a:hover { color: white; }
.login-container { display: flex; justify-content: center; align-items: center; min-height: calc(100vh - 60px); padding: 20px; }
.login-box { background: white; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.1); padding: 40px; width: 100%; max-width: 400px; }
.login-box h2 { font-size: 20px; margin-bottom: 8px; color: #1a237e; }
.login-box p { font-size: 13px; color: #666; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 4px; color: #555; }
.form-group input { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; }
.form-group input:focus { outline: none; border-color: #1a237e; }
.btn { width: 100%; padding: 10px; background: #1a237e; color: white; border: none; border-radius: 4px; font-size: 14px; cursor: pointer; }
.btn:hover { background: #283593; }
.error { color: #c62828; font-size: 13px; margin-top: 12px; display: none; }
.content { max-width: 960px; margin: 0 auto; padding: 32px 24px; }
.status-card { background: white; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); padding: 24px; margin-bottom: 16px; }
.status-card h3 { font-size: 16px; margin-bottom: 8px; }
.status-ok { color: #2e7d32; }
.status-label { font-size: 13px; color: #666; }
.docs-section { background: white; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); padding: 24px; margin-bottom: 16px; }
.docs-section h2 { font-size: 18px; margin-bottom: 12px; color: #1a237e; }
.docs-section h3 { font-size: 15px; margin: 16px 0 8px; }
.docs-section p, .docs-section li { font-size: 14px; line-height: 1.6; }
.docs-section code { background: #f5f5f5; padding: 2px 6px; border-radius: 3px; font-size: 13px; }
.docs-section pre { background: #263238; color: #eee; padding: 16px; border-radius: 4px; overflow-x: auto; margin: 8px 0; }
.docs-section ul { padding-left: 20px; }
.footer { text-align: center; padding: 24px; font-size: 12px; color: #999; }
