* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0e27;
  color: #eee;
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
  width: 100%;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: #141b2d;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  padding: 20px 0;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 2px solid #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.header-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-title h1 {
  font-size: 2em;
  color: #00d4ff;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.header-subtitle {
  font-size: 0.9em;
  color: #888;
  margin: 0;
  line-height: 1;
}

.header-logo-center {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.username {
  color: #00d4ff;
  font-weight: 600;
  font-size: 1em;
}

/* Account Button */
.account-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9em;
  text-decoration: none;
  display: inline-block;
}

.account-btn:hover {
  background: #00d4ff;
  color: #0a0e27;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* Logout Button */
.logout-btn,
#logoutBtn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #ff4757;
  color: #ff4757;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9em;
}

.logout-btn:hover,
#logoutBtn:hover {
  background: #ff4757;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

/* Navigation Styles */
.nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 25px 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: #aaa;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95em;
}

.nav-btn:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  color: #00d4ff;
  transform: translateY(-1px);
}

.nav-btn.active {
  background: #00d4ff;
  color: #0a0e27;
  border-color: #00d4ff;
  font-weight: 600;
}

/* Content Section */
.content-section {
  background: #141b2d;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.section-header h2 {
  font-size: 2em;
  color: #00d4ff;
  font-weight: 600;
  margin: 0;
}

.medical-icon,
.taxi-icon,
.account-icon,
.changelog-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  color: white;
}

.medical-icon {
  background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.taxi-icon {
  background: linear-gradient(135deg, #ffd700 0%, #ffbe00 100%);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  color: #0a0e27;
}

.account-icon,
.changelog-icon {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Account Page Styles */
.account-info-section,
.my-reports-section,
.my-applications-section {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.account-info-section h3,
.my-reports-section h3,
.my-applications-section h3 {
  font-size: 1.5em;
  color: #00d4ff;
  margin-bottom: 20px;
}

.account-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.account-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.account-detail-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.2);
}

.account-detail-item strong {
  color: #00d4ff;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.account-detail-item span {
  color: #ccc;
  display: inline-block;
  font-size: 1.1em;
}

.btn-edit-small {
  padding: 4px 10px;
  margin-left: 10px;
  background: transparent;
  border: 1px solid #00d4ff;
  color: #00d4ff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85em;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  vertical-align: middle;
}

.btn-edit-small:hover {
  background: #00d4ff;
  color: #0a0e27;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 212, 255, 0.3);
}

.discord-username-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Report Status Badges */
.report-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.report-status {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pending {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-approved {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.3);
}

.status-rejected {
  background: rgba(255, 71, 87, 0.15);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

/* Admin Note Styling */
.admin-note {
  background: rgba(95, 39, 205, 0.1);
  border-left: 3px solid #5f27cd;
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.admin-note strong {
  color: #a29bfe;
}

.admin-note p {
  color: #ccc;
  margin-top: 5px;
}

/* Buttons */
.btn-approve,
.btn-reject,
.btn-edit,
.btn-delete,
.btn-refresh {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 8px;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9em;
}

.btn-approve {
  background: transparent;
  color: #2ed573;
  border: 2px solid #2ed573;
}

.btn-approve:hover {
  background: #2ed573;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 213, 115, 0.3);
}

.btn-reject {
  background: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.btn-reject:hover {
  background: #ffc107;
  color: #0a0e27;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-edit {
  background: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

.btn-edit:hover {
  background: #00d4ff;
  color: #0a0e27;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.btn-delete {
  background: transparent;
  color: #ff4757;
  border: 2px solid #ff4757;
}

.btn-delete:hover {
  background: #ff4757;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.btn-refresh,
#refreshUsers,
#refreshMedical,
#refreshTaxi,
#refreshAccountInfo,
#refreshMyReports,
#refreshStaffList {
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-refresh:hover,
#refreshUsers:hover,
#refreshMedical:hover,
#refreshTaxi:hover,
#refreshAccountInfo:hover,
#refreshMyReports:hover,
#refreshStaffList:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* Home Page Styles */
.intro-text {
  margin-bottom: 40px;
  text-align: center;
  padding: 20px;
}

.intro-text p {
  font-size: 1.15em;
  line-height: 1.8;
  color: #aaa;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  background: rgba(255, 255, 255, 0.05);
}

.team-card.medical:hover {
  border-color: #ff4757;
  box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
}

.team-card.taxi:hover {
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.team-card.admin:hover {
  border-color: #5f27cd;
  box-shadow: 0 10px 30px rgba(95, 39, 205, 0.2);
}

.team-icon {
  font-size: 3em;
  margin-bottom: 20px;
}

.team-card h3 {
  font-size: 1.8em;
  color: #00d4ff;
  margin-bottom: 15px;
  font-weight: 600;
}

.team-card p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #00d4ff;
  color: #0a0e27;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: #00b8e6;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Info Section */
.info-section {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-section h3 {
  font-size: 1.8em;
  color: #00d4ff;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.2);
}

.info-item strong {
  color: #00d4ff;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.info-item span {
  color: #ccc;
  font-size: 1.05em;
}

.info-item button {
  width: 100%;
}

.download-mods-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.download-mods-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, #00b8e6 0%, #007aa3 100%);
}

/* Form Styles */
.team-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #00d4ff;
  font-weight: 600;
  font-size: 1em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 1em;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.form-group option {
  background: #141b2d;
  color: #fff;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.success-message,
.error-message,
.info-message {
  display: none;
  padding: 18px 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.5s ease;
  border: 1px solid;
}

.success-message {
  background: rgba(46, 213, 115, 0.15);
  border-color: rgba(46, 213, 115, 0.3);
  color: #2ed573;
}

.error-message {
  background: rgba(255, 71, 87, 0.15);
  border-color: rgba(255, 71, 87, 0.3);
  color: #ff4757;
}

.info-message {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
  color: #00d4ff;
}

.success-message.show,
.error-message.show,
.info-message.show {
  display: block;
  opacity: 1;
}

/* Account Tabs */
.account-tabs,
.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 10px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.account-tabs .tab-btn,
.admin-tabs .tab-btn,
.tab-btn,
button.tab-btn,
.admin-tabs button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 20px !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #888 !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 0.95em !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  text-decoration: none !important;
  outline: none !important;
}

.tab-btn .tab-icon,
.admin-tabs button .tab-icon {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.tab-btn:hover,
button.tab-btn:hover,
.admin-tabs button:hover {
  color: #00d4ff !important;
  background: rgba(0, 212, 255, 0.1) !important;
  border-color: rgba(0, 212, 255, 0.3) !important;
  transform: translateY(-1px) !important;
}

.tab-btn.active,
button.tab-btn.active,
.admin-tabs button.active {
  color: #0a0e27 !important;
  background: #00d4ff !important;
  border-color: #00d4ff !important;
  font-weight: 600 !important;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Modern Admin Form Styles */
.admin-form-modern {
  max-width: 100%;
}

.form-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
}

.form-section-title {
  font-size: 1.3em;
  color: #00d4ff;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-section-description {
  color: #888;
  font-size: 0.95em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-row-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Modern Checkbox Cards */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-card:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.checkbox-card input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-card input[type="checkbox"]:checked ~ .checkbox-card-content {
  color: #00d4ff;
}

.checkbox-card
  input[type="checkbox"]:checked
  ~ .checkbox-card-content
  .checkbox-card-title {
  color: #00d4ff;
}

.checkbox-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.checkbox-card-title {
  font-weight: 600;
  color: #ccc;
  font-size: 1em;
  transition: color 0.3s ease;
}

.checkbox-card-desc {
  font-size: 0.85em;
  color: #888;
  line-height: 1.4;
}

/* Smaller Checkbox Grid */
.checkbox-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.checkbox-card-simple {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-card-simple:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
}

.checkbox-card-simple input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-card-simple span {
  color: #ccc;
  font-size: 0.95em;
  font-weight: 500;
  flex: 1;
}

.checkbox-card-simple input[type="checkbox"]:checked ~ span {
  color: #00d4ff;
  font-weight: 600;
}

.checkbox-card-single {
  grid-column: 1 / -1;
}

/* Modal Improvements */
.modal-content-large {
  max-width: 900px;
  max-height: 95vh;
}
.modal-content-medium {
  max-width: 700px;
  max-height: 90vh;
}
.role-card-hidden {
  display: none !important;
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-actions .btn-secondary {
  flex: 1;
}

.modal-actions .submit-btn {
  flex: 2;
  margin: 0;
}

/* Responsive Admin Forms */
@media (max-width: 768px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .checkbox-grid-small {
    grid-template-columns: 1fr;
  }

  .form-row-modern {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 20px;
  }

  .modal-content-large {
    max-width: 95%;
  }
}

/* Filter Controls */
.filter-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-select {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 0.95em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  outline: none;
}

.filter-select:hover,
.filter-select:focus {
  border-color: #00d4ff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.filter-select option {
  background: #141b2d;
  color: #fff;
  padding: 10px;
}

/* Admin Panel Styles */
.admin-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #5f27cd 0%, #7c3ced 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  color: white;
  box-shadow: 0 4px 15px rgba(95, 39, 205, 0.3);
}

.admin-section {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.section-title h3 {
  font-size: 1.5em;
  color: #00d4ff;
  font-weight: 600;
}

.admin-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.3s ease;
  border: 1px solid transparent;
}

.checkbox-label:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.2);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Table Styles */
.table-container {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.data-table thead {
  background: rgba(0, 212, 255, 0.1);
}

.data-table th {
  padding: 16px;
  text-align: left;
  color: #00d4ff;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #ccc;
}

.data-table tr {
  transition: background 0.3s ease;
}

.data-table tr:hover {
  background: rgba(0, 212, 255, 0.03);
}

.role-badge {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin: 2px;
}

.role-badge.founder {
  background: rgba(255, 215, 0, 0.4);
  color: #ffd700;
  border: 1px solid #ffd700;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.role-badge.developer {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.role-badge.head-admin {
  background: rgba(138, 43, 226, 0.15);
  color: #ba68c8;
  border: 1px solid rgba(138, 43, 226, 0.3);
}

.role-badge.admin {
  background: rgba(95, 39, 205, 0.15);
  color: #a29bfe;
  border: 1px solid rgba(95, 39, 205, 0.3);
}

.role-badge.medical-lead {
  background: rgba(255, 71, 87, 0.15);
  color: #ff6b81;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.role-badge.taxi-lead {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.role-badge.medical {
  background: rgba(255, 71, 87, 0.1);
  color: #ff6b81;
  border: 1px solid rgba(255, 71, 87, 0.2);
}

.role-badge.taxi {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.role-badge.member {
  background: rgba(136, 136, 136, 0.1);
  color: #aaa;
  border: 1px solid rgba(136, 136, 136, 0.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #141b2d;
  border-radius: 12px;
  padding: 35px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-header h3 {
  color: #00d4ff;
  font-size: 1.8em;
  font-weight: 600;
  margin: 0;
}

.modal-close,
.close {
  background: none;
  border: none;
  color: #ff4757;
  font-size: 2em;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.modal-close:hover,
.close:hover {
  transform: rotate(90deg);
  background: rgba(255, 71, 87, 0.1);
}

.modal-body {
  padding: 20px 0;
}

.modal-body ol {
  padding-left: 25px;
  line-height: 2;
}

.modal-body li {
  margin-bottom: 12px;
  color: #ccc;
}

.modal-body strong {
  color: #00d4ff;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.btn-secondary {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ccc;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-1px);
}

/* Toggle Applications Button */
.btn-toggle-applications {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 0.9em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-toggle-applications:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.btn-toggle-applications.open {
  background: rgba(46, 213, 115, 0.2);
  border-color: #2ed573;
  color: #2ed573;
}

.btn-toggle-applications.open:hover {
  background: rgba(46, 213, 115, 0.3);
  box-shadow: 0 4px 12px rgba(46, 213, 115, 0.3);
}

.btn-toggle-applications.closed {
  background: rgba(255, 71, 87, 0.2);
  border-color: #ff4757;
  color: #ff4757;
}

.btn-toggle-applications.closed:hover {
  background: rgba(255, 71, 87, 0.3);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.btn-toggle-applications:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Application Status Banner */
.application-status-banner {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
}

.application-status-banner.open {
  background: rgba(46, 213, 115, 0.2);
  border: 2px solid #2ed573;
  color: #2ed573;
}

.application-status-banner.closed {
  background: rgba(255, 71, 87, 0.2);
  border: 2px solid #ff4757;
  color: #ff4757;
}

/* Report Cards */
.report-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.report-card:hover {
  border-color: #00d4ff;
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  flex-wrap: wrap;
  gap: 10px;
}

.report-header h4 {
  color: #00d4ff;
  font-size: 1.3em;
  margin: 0;
  font-weight: 600;
}

.report-date {
  color: #888;
  font-size: 0.9em;
}

.report-body {
  margin-bottom: 20px;
}

.report-field {
  margin-bottom: 18px;
}

.report-field strong {
  color: #00d4ff;
  display: block;
  margin-bottom: 8px;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.report-field span,
.report-field p {
  color: #ccc;
  line-height: 1.6;
}

.assistance-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  color: #00d4ff;
  font-size: 0.9em;
  font-weight: 600;
}

.report-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.loading {
  text-align: center;
  padding: 50px;
  color: #00d4ff;
  font-size: 1.2em;
  font-weight: 600;
}

.no-data {
  text-align: center;
  padding: 50px;
  color: #888;
  font-size: 1.1em;
}

.error {
  text-align: center;
  padding: 30px;
  color: #ff4757;
  font-size: 1.1em;
  background: rgba(255, 71, 87, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

/* Login Page Styles */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 20px;
}

.login-card {
  background: #141b2d;
  border-radius: 12px;
  padding: 40px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.login-header h2 {
  color: #00d4ff;
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: 600;
}

.login-header p {
  color: #888;
  font-size: 1em;
}

.login-form {
  margin-top: 30px;
}

.login-footer {
  margin-top: 30px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.login-footer p {
  color: #888;
  font-size: 0.95em;
}

.login-footer a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-footer a:hover {
  color: #00b8e6;
}

/* Changelog Styles */
.changelog-intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.changelog-intro p {
  color: #ccc;
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
}

.version-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 35px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.version-card:hover {
  border-color: #00d4ff;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.version-card.future-plans {
  border-color: rgba(255, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.03);
}

.version-card.future-plans:hover {
  border-color: #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.version-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  flex-wrap: wrap;
}

.version-header h3 {
  font-size: 1.8em;
  color: #00d4ff;
  margin: 0;
  font-weight: 600;
}

.version-date {
  color: #888;
  font-size: 1em;
  font-style: italic;
}

.version-badge {
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: auto;
}

.version-badge.current {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.3);
  animation: pulse 2s infinite;
}

.version-badge.initial {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.version-badge.planned {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.version-body {
  padding: 20px 0;
}

.change-category {
  margin-bottom: 30px;
}

.change-category:last-child {
  margin-bottom: 0;
}

.change-category h4 {
  color: #00d4ff;
  font-size: 1.3em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.change-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.change-category li {
  padding: 14px 20px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #00d4ff;
  border-radius: 6px;
  color: #ccc;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.change-category li:hover {
  background: rgba(0, 212, 255, 0.08);
  border-left-color: #00d4ff;
  transform: translateX(5px);
  color: #fff;
}

.future-plans .change-category li {
  border-left-color: #ffd700;
}

.future-plans .change-category li:hover {
  background: rgba(255, 215, 0, 0.08);
}

.version-accordion {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.version-accordion:hover {
  border-color: #00d4ff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
}

.version-accordion.future-plans {
  border-color: rgba(255, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.02);
}

.version-accordion.future-plans:hover {
  border-color: #ffd700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.version-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.version-accordion-header:hover {
  background: rgba(0, 212, 255, 0.05);
}

.version-accordion-header.active {
  background: rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.version-accordion.future-plans .version-accordion-header:hover {
  background: rgba(255, 215, 0, 0.05);
}

.version-accordion.future-plans .version-accordion-header.active {
  background: rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.version-accordion-title {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  flex: 1;
}

.version-accordion-title h3 {
  font-size: 1.6em;
  color: #00d4ff;
  margin: 0;
  font-weight: 600;
}

.version-accordion-title .version-date {
  color: #888;
  font-size: 0.9em;
  font-style: italic;
}

.version-accordion-title .version-badge {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accordion-icon {
  font-size: 1.2em;
  color: #00d4ff;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.version-accordion-header.active .accordion-icon {
  color: #00d4ff;
}

.version-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.version-accordion-content.active {
  max-height: 5000px;
  padding: 30px;
}

.version-accordion-content .version-body {
  padding: 0;
}

.version-accordion-content .change-category {
  margin-bottom: 25px;
}

.version-accordion-content .change-category:last-child {
  margin-bottom: 0;
}

.version-accordion-content .change-category h4 {
  color: #00d4ff;
  font-size: 1.2em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.version-accordion-content .change-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.version-accordion-content .change-category li {
  padding: 12px 18px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid #00d4ff;
  border-radius: 6px;
  color: #ccc;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.version-accordion-content .change-category li:hover {
  background: rgba(0, 212, 255, 0.08);
  border-left-color: #00d4ff;
  transform: translateX(5px);
  color: #fff;
}

.version-accordion.future-plans .change-category li {
  border-left-color: #ffd700;
}

.version-accordion.future-plans .change-category li:hover {
  background: rgba(255, 215, 0, 0.08);
}

/* Responsive accordion */
@media (max-width: 768px) {
  .version-accordion-header {
    padding: 20px;
  }

  .version-accordion-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .version-accordion-title h3 {
    font-size: 1.3em;
  }

  .accordion-icon {
    position: absolute;
    right: 20px;
    top: 25px;
  }

  .version-accordion-content.active {
    padding: 20px;
  }

  .version-accordion-content .change-category h4 {
    font-size: 1.1em;
  }

  .version-accordion-content .change-category li {
    padding: 10px 15px;
    font-size: 0.95em;
  }
}

/* Staff List Styles */
.staff-intro {
  text-align: center;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.staff-intro p {
  color: #ccc;
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
}

.staff-filter-section {
  margin-bottom: 30px;
}

.staff-role-section {
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.staff-role-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.staff-role-header h3 {
  font-size: 1.8em;
  color: #00d4ff;
  margin: 0;
  font-weight: 600;
}

.staff-count {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.staff-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.staff-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
}

.staff-card:hover {
  border-color: #00d4ff;
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.15);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

.staff-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.staff-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6em;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.staff-info {
  flex: 1;
}

.staff-info h4 {
  color: #00d4ff;
  font-size: 1.3em;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.staff-discord {
  color: #888;
  font-size: 0.9em;
  margin: 0;
}

.staff-card-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 25px;
  margin-top: 40px;
  color: #888;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #141b2d;
}

footer p {
  margin: 0;
  font-size: 0.95em;
}

.required {
  color: #ff4757;
}

/* Coming Soon Page */
.coming-soon-container {
  text-align: center;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-icon {
  font-size: 6em;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.coming-soon-title {
  font-size: 2.5em;
  color: #00d4ff;
  margin-bottom: 10px;
  font-weight: 600;
}

.coming-soon-subtitle {
  font-size: 1.8em;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 600;
}

.coming-soon-text {
  font-size: 1.2em;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 40px;
}

.btn-back {
  display: inline-block;
  padding: 14px 32px;
  background: #00d4ff;
  color: #0a0e27;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-back:hover {
  background: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .header-left {
    flex-direction: column;
    text-align: center;
  }

  .header-title h1 {
    font-size: 1.8em;
  }

  .user-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: column;
    padding: 20px;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  .content-section {
    padding: 25px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header h2 {
    font-size: 1.6em;
  }

  .teams-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .account-details {
    grid-template-columns: 1fr;
  }

  .discord-username-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-edit-small {
    margin-left: 0;
    margin-top: 5px;
  }

  .filter-controls {
    width: 100%;
    flex-direction: column;
  }

  .filter-select {
    width: 100%;
  }

  .account-tabs,
  .admin-tabs {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
  }

  .staff-cards-grid {
    grid-template-columns: 1fr;
  }

  .staff-role-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .version-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .version-badge {
    margin-left: 0;
  }

  .report-actions {
    flex-direction: column;
  }

  .report-actions button {
    width: 100%;
  }

  .modal-actions {
    flex-direction: column;
  }
}
