/* assets/css/style.css - STRHS Friends Web Application */
:root {
  --primary: #0f766e;
  --primary-dark: #064e3b;
  --primary-light: #14b8a6;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --wa-green: #25d366;
  --wa-dark: #075e54;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  padding-bottom: 80px; /* Space for mobile bottom bar */
  overflow-x: hidden;
}

/* App Header */
.app-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 20px 16px 16px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.school-emblem {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand-text h1.brand-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #ffffff;
}

.brand-subtitle {
  font-size: 0.84rem;
  font-weight: 500;
  color: #a7f3d0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-tag {
  background: var(--accent);
  color: #78350f;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.btn-header-add {
  background: #ffffff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 14px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.btn-header-add:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}

.btn-header-admin {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.btn-header-admin:hover {
  background: rgba(255, 255, 255, 0.35);
}

.btn-header-admin.active {
  background: #fef08a;
  color: #854d0e;
  border-color: #facc15;
}

.admin-notice-bar {
  background: #fef9c3;
  color: #854d0e;
  border-bottom: 1px solid #fef08a;
  padding: 8px 16px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 78px;
  z-index: 95;
}

.btn-admin-logout {
  background: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-admin-edit {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-admin-delete {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Nav Tabs */
.app-tabs-container {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 78px;
  z-index: 90;
}

.tabs-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  padding: 0 16px;
}

.tab-btn {
  flex: 1;
  padding: 13px 8px;
  background: none;
  border: none;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: color 0.2s ease;
}

.tab-btn.active {
  color: var(--primary);
  font-weight: 700;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

.tab-badge {
  background: var(--border-color);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.tab-btn.active .tab-badge {
  background: #ccfbf1;
  color: var(--primary);
}

/* Main Container */
.main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
}

/* Dynamic Search Bar */
.search-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.search-input-box {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 12px 42px 12px 44px;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.search-input-box:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.search-icon-left {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--text-muted);
  pointer-events: none;
}

.search-clear-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: #e2e8f0;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.search-clear-btn.visible {
  display: flex;
}

.search-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Members Section - Rounded List / Modern Cards */
.members-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.member-card:hover, .member-card:active {
  transform: translateY(-2px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

/* Rounded Avatar Styling */
.member-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.member-avatar {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: #e2e8f0;
  display: block;
}

.member-avatar-placeholder {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #0d9488, #047857);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.member-photo-pill {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: var(--radius-full);
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 2px;
}

.member-info {
  flex: 1;
  min-width: 0;
}

.member-header-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.member-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.member-nickname {
  background: var(--accent-light);
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: var(--radius-full);
}

.member-subtext {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.member-subtext span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.member-bio-preview {
  font-size: 0.8rem;
  color: #475569;
  margin-top: 5px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.member-card-arrow {
  color: #94a3b8;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-color);
  color: var(--text-muted);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--primary-light);
}

.empty-btn {
  margin-top: 14px;
  background: var(--primary);
  color: #ffffff;
  padding: 9px 18px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
}

/* Member Detail Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: slideUpModal 0.25s ease-out;
}

@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.btn-close-modal {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.btn-close-modal:hover {
  background: rgba(255, 255, 255, 0.35);
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

/* Detail Profile Banner */
.profile-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.profile-avatar-large {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-md);
  margin-bottom: 10px;
  cursor: pointer;
}

.profile-avatar-large-placeholder {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #0d9488, #047857);
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-md);
  margin-bottom: 10px;
}

.profile-full-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-actions-bar {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.btn-wa-chat {
  background: var(--wa-green);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  transition: transform 0.15s ease;
}

.btn-wa-chat:hover {
  transform: scale(1.03);
}

.btn-phone-call {
  background: #f1f5f9;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Info Grid */
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.info-item {
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
}

.info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  word-break: break-word;
}

.profile-bio-box {
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin: 14px 0;
  font-size: 0.9rem;
  color: #713f12;
}

/* Photos Gallery (Max 5 photos) */
.section-subheading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 18px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.gallery-photo-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: #e2e8f0;
  border: 1px solid var(--border-color);
}

.gallery-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-photo-card:hover img {
  transform: scale(1.05);
}

.photo-caption-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #ffffff;
  font-size: 0.68rem;
  padding: 2px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Comments Section inside Member Details */
.member-comments-box {
  margin-top: 14px;
}

.comment-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.comment-author {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-dark);
}

.comment-time {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.comment-content {
  font-size: 0.9rem;
  color: var(--text-main);
  white-space: pre-line;
}

.comment-photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  background: #e0f2fe;
  color: #0369a1;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

/* Add Comment Form with Voice Recorder */
.add-comment-box {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 16px;
}

.comment-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.comment-input-field {
  flex: 1;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  resize: vertical;
  min-height: 48px;
}

.comment-input-field:focus {
  border-color: var(--primary);
}

.voice-record-btn {
  background: #ef4444;
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
  transition: all 0.2s;
}

.voice-record-btn.recording {
  animation: pulseRecording 1s infinite alternate;
}

@keyframes pulseRecording {
  from { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  to { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

.recording-status-box {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 0.84rem;
  color: #991b1b;
}

.recording-status-box.active {
  display: flex;
}

.rec-timer {
  font-weight: 700;
  font-family: monospace;
}

.audio-preview-box {
  display: none;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 10px;
}

.audio-preview-box.active {
  display: flex;
}

.audio-preview-box audio {
  flex: 1;
  height: 36px;
}

.btn-post-comment {
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  width: 100%;
}

/* Add Member Form Styles */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-group label span.req {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Photo Upload Box (Max 5 photos) */
.photos-upload-area {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 16px;
  background: #f8fafc;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.photos-upload-area:hover {
  border-color: var(--primary);
  background: #f0fdfa;
}

.upload-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.thumb-preview-box {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border-color);
  background: #ffffff;
}

.thumb-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-badge {
  position: absolute;
  top: 2px;
  left: 2px;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  font-size: 0.65rem;
  padding: 1px 4px;
  border-radius: 4px;
}

.compression-status-bar {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 6px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast-msg {
  background: #1e293b;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease-out;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating Action Button (FAB) for Mobile */
.mobile-fab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--wa-green), #16a34a);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
  border: none;
  cursor: pointer;
  z-index: 95;
  transition: transform 0.2s;
}

.mobile-fab:hover, .mobile-fab:active {
  transform: scale(1.08);
}

/* Bottom Navigation Bar for Mobile */
.bottom-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  padding: 8px 0 10px;
  z-index: 90;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-item.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-icon {
  font-size: 1.25rem;
}

/* Responsive adjustments */
@media (min-width: 640px) {
  .members-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-nav-bar {
    display: none;
  }
  body {
    padding-bottom: 30px;
  }
  .mobile-fab {
    bottom: 30px;
  }
}
