* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #f0f2f5; color: #333; }

.login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: linear-gradient(135deg, #667eea, #764ba2); }
.login-box { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); width: 400px; }
.login-box h1 { text-align: center; color: #ff6b35; margin-bottom: 10px; }
.login-box h2 { text-align: center; margin-bottom: 30px; color: #666; font-size: 18px; }
.login-box input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; }

.sidebar { position: fixed; left: 0; top: 0; width: 240px; height: 100vh; background: #1a1a2e; color: #fff; padding: 20px; }
.sidebar h1 { color: #ff6b35; margin-bottom: 30px; font-size: 20px; }
.sidebar nav a { display: block; color: #ccc; padding: 12px 15px; text-decoration: none; border-radius: 5px; margin-bottom: 5px; transition: 0.2s; }
.sidebar nav a:hover, .sidebar nav a.active { background: #ff6b35; color: #fff; }

.main-content { margin-left: 240px; padding: 30px; }
.main-content h1 { margin-bottom: 20px; color: #1a1a2e; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; }
.stat-card { background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); text-align: center; }
.stat-card h3 { font-size: 36px; color: #ff6b35; margin-bottom: 5px; }
.stat-card p { color: #666; }

.form-card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); max-width: 800px; margin-top: 20px; }
.form-card label { display: block; margin: 15px 0 5px; font-weight: 600; color: #333; }
.form-card input, .form-card select, .form-card textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; font-family: inherit; }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }

.btn-primary { background: #ff6b35; color: #fff; padding: 12px 25px; border: none; border-radius: 5px; cursor: pointer; font-size: 14px; text-decoration: none; display: inline-block; margin-top: 15px; }
.btn-primary:hover { background: #e55a2b; }
.btn-danger { background: #dc3545; color: #fff; padding: 6px 12px; border-radius: 3px; text-decoration: none; font-size: 12px; }

.data-table { width: 100%; background: #fff; border-collapse: collapse; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-top: 20px; }
.data-table th { background: #1a1a2e; color: #fff; padding: 12px; text-align: left; }
.data-table td { padding: 12px; border-bottom: 1px solid #eee; }
.data-table tr:hover { background: #f9f9f9; }

.alert { padding: 12px; border-radius: 5px; margin-bottom: 15px; }
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }

.review-body { background: linear-gradient(135deg, #667eea, #764ba2); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.review-container { background: #fff; padding: 40px; border-radius: 15px; max-width: 500px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
.review-logo { max-width: 200px; margin-bottom: 20px; }
.review-container h1 { margin-bottom: 15px; color: #1a1a2e; }
.review-container p { color: #666; margin-bottom: 25px; }
.review-buttons { display: flex; flex-direction: column; gap: 12px; }
.review-btn { padding: 15px; border-radius: 8px; text-decoration: none; color: #fff; font-weight: bold; transition: 0.2s; }
.review-btn:hover { transform: translateY(-2px); }
.review-btn.google { background: #4285f4; }
.review-btn.facebook { background: #1877f2; }
.review-btn.yelp { background: #d32323; }