/* Global Styles for Lab 09 */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f0f2f5; margin: 0; color: #333; }
.card { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); margin-bottom: 20px; }
.btn { background: #2d6a4f; color: white; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; font-weight: 600; transition: background 0.3s; }
.btn:hover { background: #1b4332; }
.btn-secondary { background: #6c757d; }
.btn-secondary:hover { background: #5a6268; }

.error-msg { color: #d9534f; background: #fdf2f2; padding: 10px; border-radius: 6px; display: block; margin-bottom: 15px; border: 1px solid #fbd5d5; }
.success-msg { color: #166534; background: #f0fdf4; padding: 10px; border-radius: 6px; display: block; margin-bottom: 15px; border: 1px solid #bcf0da; }

/* GridView Styles */
.grid { width: 100%; border-collapse: collapse; background: white; }
.grid th { background: #f8f9fa; padding: 15px; text-align: left; border-bottom: 2px solid #dee2e6; color: #2d6a4f; }
.grid td { padding: 15px; border-bottom: 1px solid #dee2e6; vertical-align: middle; }
.grid tr:hover { background: #f1f8f5; }

/* Badges */
.badge { padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: bold; text-transform: uppercase; }
.badge-anon { background: #e0e7ff; color: #3730a3; }
.badge-ident { background: #fef3c7; color: #92400e; }
.badge-active { background: #d1fae5; color: #065f46; }
.badge-inactive { background: #fee2e2; color: #991b1b; }

/* Form Elements */
.form-control { width: 100%; padding: 10px; border: 1px solid #ced4da; border-radius: 6px; box-sizing: border-box; margin-bottom: 15px; font-size: 14px; }
.form-control:focus { border-color: #2d6a4f; outline: none; box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1); }