* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; padding: 20px; }
.container { max-width: 900px; margin: 0 auto; }
.header { text-align: center; color: white; margin-bottom: 30px; }
.header h1 { font-size: 36px; margin-bottom: 8px; }
.status-box { background: white; padding: 20px; border-radius: 10px; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); text-align: center; }
.status-box p { font-size: 18px; font-weight: bold; color: #667eea; }
.content { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.content h2 { color: #333; margin-bottom: 15px; }
.content p { color: #666; }
#users-list { margin-top: 20px; }
#users-list h3 { color: #667eea; margin-bottom: 10px; }
#users-list ul { list-style: none; }
#users-list li { padding: 10px; background: #f5f5f5; margin: 8px 0; border-radius: 4px; }
