body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f4f4; margin: 0; padding: 20px; display: flex; flex-direction: column; align-items: center; }
.container { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); width: 100%; max-width: 600px; }
h1 { text-align: center; color: #333; }
#camera-container { width: 100%; background: #000; border-radius: 8px; overflow: hidden; position: relative; margin-bottom: 20px; aspect-ratio: 4/3; }
#video { width: 100%; height: 100%; object-fit: cover; }
.form-group { margin-bottom: 15px; }
label { display: block; margin-bottom: 5px; color: #555; font-weight: bold; }
input[type="text"], input[type="tel"], textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; }
.btn { background-color: #28a745; color: white; border: none; padding: 15px; width: 100%; border-radius: 4px; font-size: 18px; cursor: pointer; transition: background 0.3s; margin-bottom: 10px; }
.btn:hover { background-color: #218838; }
.btn-capture { background-color: #007bff; }
.btn-capture:hover { background-color: #0069d9; }
.btn-secondary { background-color: #6c757d; }
.btn-secondary:hover { background-color: #5a6268; }
.btn-switch { background-color: #17a2b8; }
.btn-switch:hover { background-color: #138496; }
#photo-preview { width: 100%; border-radius: 8px; display: none; margin-bottom: 20px; aspect-ratio: 4/3; object-fit: cover; }
.status-msg { text-align: center; margin-top: 10px; font-weight: bold; }
.status-success { color: green; }
.status-error { color: red; }

/* Admin Styles */
.admin-container { width: 95%; max-width: 1200px; margin: 20px auto; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.search-form { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.search-form input { flex: 1; min-width: 200px; padding: 10px; border: 1px solid #ddd; border-radius: 4px; }
.search-form .btn-search { background: #007bff; color: white; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; }
.devotee-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.devotee-table th, .devotee-table td { border: 1px solid #ddd; padding: 12px; text-align: left; }
.devotee-table th { background-color: #f8f9fa; }
.devotee-table img { width: 80px; height: 60px; object-fit: cover; border-radius: 4px; }
.no-records { text-align: center; padding: 20px; color: #777; }
.nav { margin-bottom: 20px; }
.nav a { margin-right: 15px; text-decoration: none; color: #007bff; font-weight: bold; }
