/* MOBILE SCROLL FIX */
@mobile {
  #main-content {
    padding: 10px;
    padding-bottom: 200px;  /* Extra for iPhone notch */
  }
  #create-btn {
    font-size: 18px;
    padding: 20px;
  }
}

/* Force scroll on iOS */
html, body {
  -webkit-overflow-scrolling: touch;
}
/* INSTANT FONT + NO FLASH */
html { font-family: 'Segoe UI', Arial, sans-serif; }
body {
  margin: 0;
  background: #f8f9fc;
  transition: opacity 0.3s ease;
  opacity: 0; /* Will be overridden by JS */
}
body.loaded { opacity: 1; }

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #f8f9fc; }

#login-container {
  max-width: 400px;
  margin: 150px auto;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}
#login-container input {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}
#login-container button {
  width: 100%;
  padding: 14px;
  background: #e31e24;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

#dashboard { display: none; height: 100vh; }
#sidebar {
  width: 280px;
  background: white;
  padding: 30px 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.05);
  height: 100%;
  float: left;
}
#sidebar h1 {
  font-size: 26px;
  margin-bottom: 50px;
  text-align: center;
  color: #333;
}
.nav-btn {
  width: 100%;
  padding: 18px;
  margin: 12px 0;
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 12px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}
.nav-btn:hover { background: #e9ecef; border-color: #ddd; }
#logout-btn { background: #dc3545 !important; color: white !important; margin-top: 80px; }

#main-content {
  margin-left: 280px;
  padding: 40px;
  height: 100vh;
  overflow: hidden;
  background: #f8f9fc;
}

/* DRIVERS SECTION */
#drivers-section {
  display: flex;
  gap: 30px;
  height: 100%;
}
#drivers-list {
  flex: 0 0 380px;
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow-y: auto;
}
#drivers-list h2 {
  margin-bottom: 20px;
  color: #555;
  font-size: 22px;
}
.driver-item {
  background: white;
  padding: 18px 24px;
  margin-bottom: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
}
.driver-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* DRIVER DETAILS - RIGHT SIDE */
#driver-details {
  flex: 1;
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow-y: auto;
}
#driver-details h3 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #333;
}
#driver-details p {
  margin: 16px 0;
  font-size: 17px;
  line-height: 1.6;
}
#driver-details strong {
  color: #555;
  min-width: 160px;
  display: inline-block;
}
#driver-details select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  margin-left: 10px;
}
#driver-details a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}
#driver-details a:hover {
  text-decoration: underline;
}

.edit-btn {
  background: #007bff;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}
.delete-btn {
  background: #dc3545;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}
.delete-btn:hover {
  background: #c82333;
}
/* RIDERS SECTION - REUSE DRIVERS STYLES */
#riders-section {
  display: flex;
  gap: 30px;
  height: 100%;
}
#riders-list {
  flex: 0 0 380px;
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow-y: auto;
}

#riders-list h2 {
  margin-bottom: 20px;
  color: #555;
  font-size: 22px;
}
.rider-item {
  background: white;
  padding: 18px 24px;
  margin-bottom: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
}
.rider-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Rider details reuse #driver-details styles */
#rider-details {
  flex: 1;
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow-y: auto;
}
#rider-details h3 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #333;
}
#rider-details p {
  margin: 16px 0;
  font-size: 17px;
  line-height: 1.6;
}
#rider-details strong {
  color: #555;
  min-width: 160px;
  display: inline-block;
}
#rider-details select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  margin-left: 10px;
}
#rider-details a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}
#rider-details a:hover {
  text-decoration: underline;
}

/* CREATE DRIVER FORM */
/* CREATE DRIVER PAGE - FULLY SCROLLABLE */
#main-content {
  margin-left: 280px;
  padding: 20px;
  min-height: 100vh;
  overflow-y: auto;           /* ← ALLOW SCROLL */
  background: #f8f9fc;
  padding-bottom: 100px;      /* Extra space at bottom */
}

#create-driver-section {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 40px;
  min-height: auto;           /* ← Remove fixed height */
  overflow: visible;          /* ← Allow content to expand */
}

/* Form takes full height */
#new-driver-form {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#create-driver-form h2 {
  margin-bottom: 30px;
  font-size: 26px;
  color: #333;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
}
.file-input {
  padding: 10px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  background: #f9f9f9;
  text-align: center;
  cursor: pointer;
}
.file-input:hover {
  border-color: #e31e24;
}
#create-btn {
  background: #28a745 !important;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}
#create-btn:hover {
  background: #006400 !important;
}
#form-message {
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
}
.file-input input[type="file"] {
  width: 100%;
  padding: 20px;
  font-size: 16px;
}
.file-input p {
  margin: 10px 0 0;
  color: #666;
  font-size: 14px;
}
/* RIDE OPTIONS SECTION */
#ride-options-section {
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
}

#ride-options-list {
  margin-bottom: 40px;
}

.ride-option-item {
  background: #f8f9fa;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}

.ride-option-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.ride-option-item strong {
  font-size: 18px;
}

.ride-option-buttons button {
  margin-left: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.ride-option-buttons .edit-btn {
  background: #007bff;
  color: white;
}

.ride-option-buttons .delete-btn {
  background: #dc3545;
  color: white;
}

#ride-option-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
}

#ride-option-form h3 {
  margin-bottom: 20px;
}

#ride-option-form .form-group {
  margin-bottom: 20px;
}

#ride-option-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

#ride-option-form input, #ride-option-form select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}



/* EARNINGS DASHBOARD STYLES */
#earnings-dashboard-section {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-header h2 {
    font-size: 28px;
    color: #333;
}

.date-range-tabs {
    display: flex;
    background: #f1f3f5;
    border-radius: 12px;
    padding: 6px;
    gap: 6px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.tab-btn.active {
    background: #28a745 !important;
    color: white;
}

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

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.stat-card h3 {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-card p {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.trend {
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.trend.up {
    background: #d4edda;
    color: #155724;
}

.trend.down {
    background: #f8d7da;
    color: #721c24;
}

.chart-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.recent-rides {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.recent-rides h3 {
    margin-bottom: 20px;
    color: #333;
}

#recent-rides-list {
    max-height: 400px;
    overflow-y: auto;
}

.ride-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.ride-item:last-child {
    border-bottom: none;
}

.ride-amount {
    font-weight: bold;
    color: #e31e24;
}
.nav-btn.active {
    background: #28a745 !important;
    color: white !important;
    border-color: #e31e24 !important;
}

.last-updated {
    font-size: 14px;
    color: #666;
    font-style: italic;
    background: #f1f3f5;
    padding: 6px 12px;
    border-radius: 20px;
    min-width: 160px;
    text-align: center;
}
#edit-driver-form input,
#edit-driver-form select {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

#edit-driver-form button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
#create-user-form input,
#create-user-form label {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

#create-user-form label input[type="radio"] {
  display: inline;
  width: auto;
  margin: 0 8px 0 0;
}

#create-user-form button {
  background: #1a73e8;
  color: white;
  font-weight: 600;
}
#create-user-section {
   max-width: 800px;
   margin: 0 auto;
   background: white;
   border-radius: 16px;
   box-shadow: 0 4px 20px rgba(0,0,0,0.08);
   padding: 40px;
   min-height: auto;           /* ← Remove fixed height */
   overflow: visible;          /* ← Allow content to expand */
 }
 #user-create-btn {
   background: #28a745 !important;
   color: white;
   padding: 16px 40px;
   border: none;
   border-radius: 12px;
   font-size: 18px;
   font-weight: bold;
   cursor: pointer;
   width: 100%;
 }
 #user-create-btn:hover {
   background: #28a745 !important;
 }
 /* RADIO GROUP — FULLY INDEPENDENT */
 .radio-group-container {
   margin: 16px 0;
   text-align: left;
 }

 .radio-group {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 8px;
 }

 .radio-label {
   display: flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
   font-size: 14px;
   user-select: none;
   padding: 4px 0;
 }

 .radio-label input[type="radio"] {
   margin: 0;
   accent-color: #28a745;
   transform: scale(1.1);
 }

 /* Optional: Hover + Checked Style */
 .radio-label:hover {
   color: #28a745;
 }
 .radio-label input[type="radio"]:checked + span {
   font-weight: 600;
 }

 /* LIGHT MODE (DEFAULT) */
 body {
   background: #f5f7fa;
   color: #1a1a1a;
   transition: background 0.3s ease, color 0.3s ease;
 }

 .form-group input, .form-group select, .form-group textarea,
 #country-search, #driver-country-search,
 #selected-country-display, #driver-selected-country-display {
   background: white;
   color: #1a1a1a;
   border: 1px solid #ddd;
 }

 /* DARK MODE */
 body.dark-mode {
   background: #1a1a1a;
   color: #e0e0e0;
 }

 body.dark-mode .form-group input,
 body.dark-mode .form-group select,
 body.dark-mode #country-search,
 body.dark-mode #driver-country-search,
 body.dark-mode #selected-country-display,
 body.dark-mode #driver-selected-country-display {
   background: #2d2d2d;
   color: #e0e0e0;
   border: 1px solid #444;
 }

 body.dark-mode .form-group input::placeholder,
 body.dark-mode #country-search::placeholder,
 body.dark-mode #driver-country-search::placeholder {
   color: #888;
 }

 body.dark-mode .stat-card,
 body.dark-mode .chart-container,
 body.dark-mode .recent-rides,
 body.dark-mode .section {
   background: #242424;
   border-color: #444;
 }

 body.dark-mode .nav-btn {
   background: #333;
   color: #e0e0e0;
 }

 body.dark-mode .nav-btn.active,
 body.dark-mode .nav-btn:hover {
   background: #28a745;
   color: white;
 }


 /* SLIDER TOGGLE */
 .slider-toggle {
   position: absolute;
   top: 20px;
   left: 25px;
   cursor: pointer;
   z-index: 1000;
   display: inline-block;
 }

 .slider-toggle input {
   display: none;
 }

 .slider {
   position: relative;
   display: inline-block;
   width: 50px;
   height: 26px;
   background: #ccc;
   border-radius: 34px;
   transition: background 0.3s ease;
 }

 .slider::before {
   content: '';
   position: absolute;
   width: 20px;
   height: 22px;
   left: 2px;
   top: 2px;
   background: white;
   border-radius: 50%;
   transition: transform 0.3s ease;
   box-shadow: 0 1px 3px rgba(0,0,0,0.3);
 }

 /* DARK MODE ON */
 body.dark-mode .slider {
   background: #272729; /* Green when ON */
 }

 body.dark-mode .slider::before {
   transform: translateX(24px);
 }

 /* HOVER EFFECT */
 .slider-toggle:hover .slider {
   opacity: 0.9;
 }

 /* COUNT CARDS */
 #count-container {
   font-family: 'Segoe UI', sans-serif;
 }

 #count-container strong {
   font-size: 18px;
   font-weight: 600;
   color: #28a745; /* Green */
   margin-right: 4px;
 }

 body.dark-mode #count-container strong {
   color: #4ade80;
 }

 body.dark-mode #count-container span {
   color: #aaa;
 }
 .list-item {
   transition: background 0.2s ease;
 }
 .list-item:hover {
   background: #f0f0f0 !important;
 }
 body.dark-mode .list-item {
   background: #2a2a2a;
   border-color: #444;
 }
 body.dark-mode .list-item:hover {
   background: #333 !important;
 }
 /* ADMINS SECTION — REUSE RIDERS LAYOUT */
 #admins-section {
   display: flex;
   gap: 30px;
   height: 100%;
 }

 #admins-list {
   flex: 0 0 380px;
   background: white;
   padding: 25px;
   border-radius: 16px;
   box-shadow: 0 4px 20px rgba(0,0,0,0.08);
   overflow-y: auto;
 }

 #admins-list h2 {
   margin-bottom: 20px;
   color: #555;
   font-size: 22px;
 }

 .admin-item {
   background: white;
   padding: 18px 24px;
   margin-bottom: 16px;
   border-radius: 16px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   cursor: pointer;
   transition: 0.2s;
   font-weight: 500;
   font-size: 17px;
 }

 .admin-item:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(0,0,0,0.12);
 }

 #admin-details {
   flex: 1;
   background: white;
   padding: 35px;
   border-radius: 16px;
   box-shadow: 0 4px 20px rgba(0,0,0,0.08);
   overflow-y: auto;
 }

 #admin-details h3 {
   font-size: 26px;
   margin-bottom: 25px;
   color: #333;
 }

 #admin-details p {
   margin: 16px 0;
   font-size: 17px;
   line-height: 1.6;
 }

 #admin-details strong {
   color: #555;
   min-width: 160px;
   display: inline-block;
 }
 /* EDIT FORMS — REUSABLE */
 #edit-rider-form input,
 #edit-admin-form input,
 #edit-rider-form select {
   width: 100%;
   padding: 12px;
   margin: 10px 0;
   border: 1px solid #ddd;
   border-radius: 8px;
   font-size: 16px;
 }
 .country-picker {
   position: relative;
   width: 100%;
 }

 .country-selected {
   display: flex;
   align-items: center;
   gap: 8px;
   background: #fff;
   border: 1px solid #ddd;
   padding: 12px;
   border-radius: 10px;
   cursor: pointer;
   font-size: 16px;
 }

 .country-selected .arrow {
   margin-left: auto;
   color: #888;
 }

 .country-dropdown {
   position: absolute;
   top: 105%;
   left: 0;
   right: 0;
   background: #fff;
   border: 1px solid #ddd;
   border-top: none;
   z-index: 200;
   border-radius: 0 0 10px 10px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.08);
 }

 .country-search {
   width: 100%;
   padding: 12px;
   border: none;
   border-bottom: 1px solid #eee;
   font-size: 14px;
   outline: none;
 }

 .country-list {
   max-height: 250px;
   overflow-y: auto;
 }

 .country-item {
   padding: 12px;
   display: flex;
   gap: 10px;
   cursor: pointer;
   font-size: 15px;
 }

 .country-item:hover {
   background: #f9f9f9;
 }
/*  driver profile */
.driver-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 8px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.2s ease;
}

.driver-item:hover {
  background: #f5f8ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.driver-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}

.driver-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px auto;
  border: 3px solid #eaeaea;
}

#edit-driver-form input[type="file"] {
  display: block;
  margin: 8px 0 16px 0;
  padding: 12px;
  border: 1px solid #ddd;
  background: #fafafa;
  border-radius: 6px;
  cursor: pointer;
}

#edit-driver-form input[type="file"]:hover {
  background: #f1f1f1;
}
.save-btn, .cancel-btn {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

.save-btn {
  background: #28a745;
  color: white;
}

.save-btn:hover {
  background: #218838;
}

.cancel-btn {
  background: #999;
  color: white;
}

.cancel-btn:hover {
  background: #777;
}

.remove-pic-btn {
  background: #e31e24;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}
.remove-pic-btn:hover {
  opacity: 0.8;
}

.btn-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-row .save-btn {
    flex-shrink: 0;
}

.btn-row .cancel-btn {
    flex-shrink: 0;
    background: #666;
}


/* riders profile */

.rider-list-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.rider-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
}

.rider-profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px auto;
  border: 3px solid #eaeaea;
}

/* ============================================
   ADMIN AVATAR — LIST VIEW
=============================================== */
.admin-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin: 8px 0;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.admin-item:hover {
  background: #f5f8ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.admin-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}


/* ============================================
   ADMIN DETAIL VIEW AVATAR
=============================================== */

.admin-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px auto;
  border: 3px solid #eaeaea;
}



/* ============================================
   ADMIN DETAIL CARD
=============================================== */
.admin-detail-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  max-width: 550px;
}

.admin-detail-card h3 {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}


/* ============================================
   RESPONSIVE SUPPORT
=============================================== */
@media (max-width: 480px) {
  .admin-avatar {
    width: 38px;
    height: 38px;
  }

  .admin-avatar-large {
    width: 95px;
    height: 95px;
  }

  .admin-item {
    padding: 10px;
  }

  .admin-detail-card {
    padding: 20px;
  }
}
