﻿/* ========================================
   SERVICE PROVIDER APP - ROOT CSS
   ======================================== */

/* ===== RESET & BASE STYLES ===== */
@import url("../root.css");

:root {
  --sp-primary: #7e57c2;
  --sp-primary-dark: #5f3ea4;
  --sp-card-bg: #ffffff;
  --sp-page-bg: #f4f4f4;
  --sp-text-primary: #111111;
  --sp-text-secondary: #717171;
  --sp-radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--sp-page-bg);
  margin: 0;
  padding: 0 0 80px 0; /* Account for fixed bottom navigation */
  overflow-y: scroll;
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Ensure all controls inherit the same font */
button,
input,
select,
textarea {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

/* ===== SHARED COMPONENTS ===== */

/* Container */
.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 12px 15px 100px 15px; /* Account for fixed bottom navigation */
  min-height: 100vh;
  background: var(--sp-page-bg);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.header-info {
  flex: 1;
  text-align: center;
}

.header-action-spacer {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.header p {
  margin: 0;
  font-size: 12px;
  color: gray;
}

.menu-btn,
.notification-btn {
  position: relative;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.notification-badge[hidden] {
  display: none;
}

.menu-btn:hover,
.notification-btn:hover {
  background: #e0e0e0;
  transform: scale(1.1);
  border-color: #667eea;
}

.menu-btn:active,
.notification-btn:active {
  transform: scale(0.95);
}

/* Page Titles */
.page-title {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 15px;
  color: #333;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.bottom-nav a,
.bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #666;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  min-width: 50px;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.bottom-nav a:hover,
.bottom-nav button:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.bottom-nav a.active,
.bottom-nav button.active {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.bottom-nav i {
  font-size: 18px;
  margin-bottom: 3px;
  display: block;
  text-align: center;
}

/* Popup System */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup {
  background: white;
  border-radius: var(--sp-radius);
  max-width: 360px;
  width: 90%;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e9ecef;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.popup-header h1 {
  font-size: 20px;
  margin: 0;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 12000;
}

.app-dialog-overlay.visible {
  display: flex;
}

.app-dialog {
  width: min(100%, 360px);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.app-dialog-header {
  padding: 22px 20px 14px;
}

.app-dialog-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: #111827;
}

.app-dialog-message {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.app-dialog-actions {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

.app-dialog-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--sp-radius);
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.app-dialog-btn.primary {
  background: #667eea;
  color: #fff;
}

.app-dialog-btn.secondary {
  background: #eef2ff;
  color: #374151;
}

.close-btn,
.back-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #6c757d;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover,
.back-btn:hover {
  background: rgba(108, 117, 125, 0.1);
  color: #495057;
  transform: rotate(90deg);
}

/* Notifications */
.notification-popup {
  max-height: 80vh;
}

.notifications-list {
  max-height: 400px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.notification-image {
  width: 100%;
  max-height: 180px;
  border-radius: var(--sp-radius);
  object-fit: cover;
  background: #eef2ff;
}

.notification-item:hover {
  background: #f8f9fa;
}

.notification-item.unread {
  background: #f0f7ff;
}

.notification-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #667eea;
  color: var(--sp-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
  cursor: pointer;
}

.notification-title:hover {
  color: #667eea;
}

.notification-text {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 4px;
}

.notification-text a {
  color: #667eea;
  text-decoration: none;
}

.notification-text a:hover {
  text-decoration: underline;
}

.notification-time {
  font-size: 12px;
  color: #999;
}

/* ===== FORM COMPONENTS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group.hidden {
  display: none;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.field {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  transition: all 0.2s ease;
  background: white;
}

.field:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.field::placeholder {
  color: #999;
}

.select-wrap {
  position: relative;
}

.select-wrap .field {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.chev {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
}

/* ===== BUTTON COMPONENTS ===== */
.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.green {
  background: #28a745;
  color: var(--sp-text-primary);
}

.btn.green:hover {
  background: #218838;
  transform: translateY(-1px);
}

.btn.red {
  background: #dc3545;
  color: var(--sp-text-primary);
}

.btn.red:hover {
  background: #c82333;
  transform: translateY(-1px);
}

.btn.disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.btn.disabled:hover {
  background: #e9ecef;
  transform: none;
}

.btn-secondary {
  flex: 1;
  background: #6c757d;
  color: var(--sp-text-primary);
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #5a6268;
}

.btn-primary {
  flex: 1;
  background: #667eea;
  color: var(--sp-text-primary);
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #5568d3;
}

.btn-outline {
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: #667eea;
  color: var(--sp-text-primary);
  transform: translateY(-1px);
}

.cta {
  width: 100%;
  padding: 15px;
  background: #667eea;
  color: var(--sp-text-primary);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta:hover {
  background: #5568d3;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.cta:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  transform: none;
}

/* ===== PAGE SPECIFIC STYLES ===== */

/* Schedule Management Page */
.status-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.status-option:hover {
  border-color: #667eea;
  background: #f8f9ff;
}

.status-option input[type="radio"] {
  margin: 0;
}

.status-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.status-desc {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.time-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  margin-top: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
}

.popup-body {
  padding: 15px;
}

.popup-footer {
  display: flex;
  gap: 12px;
  padding: 15px;
  border-top: 1px solid #eee;
}

.current-status {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  color: #667eea;
  font-weight: 500;
}

/* Profile Page */
.profile-header {
  text-align: center;
  padding: 30px 20px;
  background: var(--sp-card-bg);
  color: var(--sp-text-primary);
  border-radius: 0 0 20px 20px;
  margin-bottom: 20px;
}

.profile-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.profile-header p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.menu-arrow {
  color: #999;
  font-size: 14px;
  transition: all 0.2s ease;
}

.extra-links {
  margin: 15px;
}

.extra-links a {
  display: block;
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.extra-links a:hover {
  color: #5568d3;
  text-decoration: underline;
}

.spacer {
  height: 20px;
}

/* Money Page */
.earnings-card {
  background: var(--sp-card-bg);
  border-radius: var(--sp-radius);
  padding: 20px;
  margin: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
  color: var(--sp-text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.earnings-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.earnings-card h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.earnings-card p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.months {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  gap: 8px;
}

.months span {
  padding: 6px 4px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.2);
}

.months span:hover {
  background: rgba(255, 255, 255, 0.3);
}

.months span.active {
  background: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.balance-card {
  background: white;
  border-radius: var(--sp-radius);
  padding: 20px;
  margin: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.balance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.balance-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #333;
}

.balance-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 20px 15px 10px;
}

.transfer-row {
  display: flex;
  gap: 15px;
  margin: 0 15px;
}

.transfer-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.transfer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.transfer-card h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #333;
}

.transfer-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.see-all {
  background: #f8f9fa;
  border: none;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #667eea;
  font-weight: 500;
  transition: all 0.2s ease;
}

.see-all:hover {
  background: #667eea;
  color: var(--sp-text-primary);
  transform: translateY(-1px);
}

.input-placeholder,
.history-placeholder {
  background: #f8f9fa;
  border-radius: 8px;
  height: 60px;
  margin: 15px;
}

/* Job Lifecycle Page */
.job-card {
  background: #f8f9fa;
  border-radius: var(--sp-radius);
  padding: 20px;
  margin: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-card h2 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
}

.job-card p {
  font-size: 14px;
  color: #666;
  margin: 0 0 8px 0;
}

.timeline-card {
  background: white;
  border-radius: var(--sp-radius);
  padding: 20px;
  margin: 15px auto;
  max-width: 500px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: #e9ecef;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease;
}

.circle i {
  font-size: 16px;
}

.step.active .circle {
  background: #667eea;
  color: var(--sp-text-primary);
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.step.completed .circle {
  background: #4caf50;
  color: var(--sp-text-primary);
}

/* Job History Page */
.tabs-wrap {
  margin: 0 15px 20px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #eee;
}

.tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.tab.active {
  color: #667eea;
  border-bottom-color: #667eea;
  font-weight: 500;
}

.content {
  padding: 0 15px;
}

.job-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 15px auto;
  max-width: 500px;
  transition: all 0.2s ease;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.row.bottom {
  margin-bottom: 0;
}

.job-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.job-sub {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.job-sub span {
  color: #999;
  margin-left: 8px;
}

.amount {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.chip {
  padding: 4px 8px;
  border-radius: var(--sp-radius);
  font-size: 12px;
  font-weight: 500;
}

.chip-success {
  background: #d4edda;
  color: #155724;
}

.chip-danger {
  background: #f8d7da;
  color: #721c24;
}

.details {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.details:hover {
  text-decoration: underline;
  color: #5568d3;
}

.details i {
  font-size: 12px;
  margin-left: 4px;
}

/* Document Verification Page */
.subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 15px 20px;
  line-height: 1.4;
}

.alert {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 12px;
  margin: 15px;
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.alert:hover {
  background: #fff8dc;
  transform: translateY(-1px);
}

.alert-icon {
  width: 24px;
  height: 24px;
  background: #ffc107;
  color: var(--sp-text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-size: 14px;
  font-weight: 600;
  color: #856404;
  margin-bottom: 4px;
}

.alert-desc {
  font-size: 13px;
  color: #856404;
  line-height: 1.4;
}

.block {
  margin: 15px;
}

.label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.upload-box {
  background: white;
  border: 2px dashed #ddd;
  border-radius: var(--sp-radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  min-height: 120px;
}

.upload-box:hover {
  border-color: #667eea;
  background: #f8f9ff;
  transform: translateY(-2px);
}

.upload-top {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #999;
}

.upload-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.doc-icon {
  font-size: 26px;
  color: #667eea;
  margin-bottom: 8px;
}

.upload-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.upload-sub {
  font-size: 13px;
  color: #666;
}

.photo-card {
  background: white;
  border: 2px dashed #ddd;
  border-radius: var(--sp-radius);
  padding: 20px;
  display: flex;
  gap: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.photo-card:hover {
  border-color: #667eea;
  background: #f8f9ff;
  transform: translateY(-2px);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.user-mark {
  width: 20px;
  height: 20px;
  background: #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sp-text-primary);
  font-size: 12px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.photo-right {
  flex: 1;
}

.photo-right p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

/* Booking Request Page */
.booking-card {
  background: white;
  border-radius: var(--sp-radius);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 15px;
}

.booking-card h2 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
}

.booking-card .date {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px 0;
}

.status {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}

.status.accepted {
  background: #d4edda;
  color: #155724;
}

.status.rejected {
  background: #f8d7da;
  color: #721c24;
}

.action-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.action-buttons button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.accept {
  background: #28a745;
  color: var(--sp-text-primary);
}

.accept:hover {
  background: #218838;
  transform: translateY(-1px);
}

.reject {
  background: #dc3545;
  color: var(--sp-text-primary);
}

.reject:hover {
  background: #c82333;
  transform: translateY(-1px);
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
}

.list-item:last-child {
  border-bottom: none;
}

.list-item:hover {
  background: #f8f9fa;
  padding-left: 8px;
  color: #667eea;
}

.list-item span {
  font-size: 14px;
  color: #333;
}

.list-item i {
  color: #999;
  font-size: 14px;
  transition: all 0.2s ease;
}

.list-item:hover i {
  color: #667eea;
  transform: translateX(4px);
}

/* Dashboard Page */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin: 0 15px 20px;
}

.stat-card {
  background: white;
  border-radius: var(--sp-radius);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--sp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
  color: var(--sp-text-primary);
}

.stat-icon.bookings {
  background: var(--sp-card-bg);
}

.stat-icon.earnings {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.stat-icon.pending {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stat-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.overview-section {
  margin: 0 15px;
}

.overview-card {
  background: white;
  border-radius: var(--sp-radius);
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overview-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.overview-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.overview-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--sp-radius);
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
  transition: all 0.2s ease;
}

.overview-card:hover .overview-icon {
  background: var(--sp-card-bg);
  color: var(--sp-text-primary);
}

.overview-details h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
}

.overview-count {
  font-size: 14px;
  color: #667eea;
  font-weight: 600;
  margin: 0;
}

.overview-action {
  color: #999;
  font-size: 14px;
  transition: all 0.2s ease;
}

.overview-card:hover .overview-action {
  color: #667eea;
  transform: translateX(4px);
}

.earnings-overview {
  background: white;
  border-radius: var(--sp-radius);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.earnings-overview h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
}

.earnings-amount {
  font-size: 28px;
  font-weight: 700;
  color: #667eea;
  margin: 0 0 20px 0;
}

.earnings-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 60px;
  gap: 8px;
}

.month-bar {
  flex: 1;
  background: #e9ecef;
  border-radius: 4px;
  position: relative;
  min-height: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.month-bar::after {
  content: attr(data-month);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #999;
  white-space: nowrap;
}

.month-bar.active {
  background: var(--sp-card-bg);
  min-height: 40px;
}

.month-bar:hover {
  background: #dee2e6;
}

.month-bar.active:hover {
  background: linear-gradient(135deg, #5568d3, #6a48b3);
}

/* ===== LOGIN & REGISTER PAGE ===== */
.login-container {
  max-width: 375px;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
  padding: 20px;
  position: relative;
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-logo {
  width: 80px;
  height: 80px;
  background: var(--sp-card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--sp-text-primary);
}

.login-form {
  max-width: 300px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.phone-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  transition: all 0.2s ease;
  background: white;
}

.phone-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.phone-input::placeholder {
  color: #999;
}

.password-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  transition: all 0.2s ease;
  background: white;
}

.password-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-input::placeholder {
  color: #999;
}

/* Registration Page Styles */
.form-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #f8f9fa;
}

.form-row {
  display: flex;
  gap: 15px;
}

.half-width {
  flex: 1;
}

.password-requirements {
  margin-top: 5px;
}

.password-requirements small {
  font-size: 12px;
  color: #666;
  transition: color 0.3s ease;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.otp-section {
  display: none;
  margin-top: 20px;
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.otp-input {
  width: 50px;
  height: 50px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.otp-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.resend-text {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 15px;
}

.resend-text a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.resend-text a:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 15px;
  background: #667eea;
  color: var(--sp-text-primary);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 20px;
}

.login-btn:hover {
  background: #5568d3;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.login-btn:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e9ecef;
}

.divider-text {
  background: white;
  padding: 0 15px;
  font-size: 13px;
  color: #666;
  position: relative;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-btn:hover {
  border-color: #667eea;
  background: #f8f9ff;
  transform: translateY(-1px);
}

.social-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-link {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}

.register-link a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.register-link a:hover {
  text-decoration: underline;
}

.terms-text {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 20px;
  line-height: 1.4;
}

.terms-text a {
  color: #667eea;
  text-decoration: none;
}

.terms-text a:hover {
  text-decoration: underline;
}

/* ===== HIDDEN ELEMENTS ===== */
.hidden {
  display: none;
}

/* Initially hidden popups */
#datePopup,
#timeSlotPopup,
#statusPopup,
#notificationPopup,
#jobHistoryPopup,
#editProfilePopup,
#updateStatusPopup {
  display: none;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile First - Base Styles */
@media (max-width: 380px) {
  .bottom-nav {
    max-width: 100%;
    border-radius: 0;
  }
  
  .container {
    padding: 0 10px 80px 10px;
  }
}

/* Tablet View */
@media (min-width: 381px) and (max-width: 768px) {
  .bottom-nav {
    max-width: 375px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
  }
  
  .container {
    max-width: 768px;
    padding: 0 20px 80px 20px;
  }
  
  .job-card-container{
    flex-direction:row;
    gap:20px;
  }
  
  .job-details-section{
    width:40%;
  }
  
  .map-section{
    width:60%;
  }
}

/* Desktop View */
@media (min-width: 769px) {
  .bottom-nav {
    max-width: 375px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
  }
  
  .container {
    max-width: 1200px;
    padding: 0 30px 80px 30px;
  }
  
  .job-card-container{
    flex-direction:row;
    gap:25px;
  }
  
  .job-details-section{
    width:35%;
  }
  
  .map-section{
    width:65%;
  }
  
  .map-container{
    height:250px;
  }
}

/* Large Desktop View */
@media (min-width: 1024px) {
  .bottom-nav {
    max-width: 400px;
  }
  
  .container {
    max-width: 1400px;
    padding: 0 40px 80px 40px;
  }
  
  .job-card-container{
    gap:30px;
  }
  
  .job-details-section{
    width:30%;
  }
  
  .map-section{
    width:70%;
  }
  
  .map-container{
    height:300px;
  }
}

/* ===== NO BOOKINGS STATE ===== */
.no-bookings {
  text-align: center;
  padding: 60px 20px;
  margin: 40px 0;
}

.no-bookings i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 24px;
}

.no-bookings h3 {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  margin: 0 0 8px 0;
}

.no-bookings p {
  font-size: 14px;
  color: #999;
  margin: 0;
}

/* availability card */
.card{
  background:white;
  border-radius:12px;
  padding:20px;
  margin:15px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.card-title{
  font-size:18px;
  font-weight:600;
  color:#333;
  margin:0 0 20px 0;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  font-size:14px;
  font-weight:500;
  color:#333;
  margin-bottom:8px;
}

.input-field{
  background:#f8f9fa;
  border:2px solid #e9ecef;
  border-radius:8px;
  padding:12px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  transition:all 0.3s ease;
}

.input-field:hover{
  border-color:#667eea;
  background:#f8f9ff;
}

.input-field i{
  color:#667eea;
  font-size:16px;
}

.input-field span{
  color:#333;
  font-size:14px;
}

/* button group */
.button-group{
  display:flex;
  gap:12px;
  margin-top:25px;
}

.btn{
  flex:1;
  padding:12px;
  border:none;
  border-radius:8px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}

.btn-primary{
  background:#667eea;
  color:white;
}

.btn-primary:hover{
  background:#5568d3;
  transform:translateY(-1px);
}

/* popup overlay */
.overlay{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.5);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1000;
}

.popup{
  background:white;
  border-radius:12px;
  max-width:360px;
  width:90%;
  max-height:80vh;
  overflow-y:auto;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.popup-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px;
  border-bottom:1px solid #eee;
}

.popup-header h1{
  font-size:18px;
  margin:0;
  color:#333;
}

.close-btn, .back-btn{
  background:none;
  border:none;
  font-size:20px;
  cursor:pointer;
  color:#666;
  padding:5px;
  border-radius:50%;
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.close-btn:hover, .back-btn:hover{
  background:#f0f0f0;
}

.spacer{
  width:30px;
}

/* popup body */
.popup-body{
  padding:15px;
}

/* calendar view */
.calendar-view{
  margin-bottom:20px;
}

.calendar-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:15px;
}

.calendar-month-year{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
}

.calendar-month{
  font-size:16px;
  font-weight:500;
  color:#333;
}

.year-dropdown{
  font-size:12px;
  padding:4px 8px;
  border:1px solid #ddd;
  border-radius:4px;
  background:white;
  color:#666;
  cursor:pointer;
  transition:all 0.2s ease;
}

.year-dropdown:hover{
  border-color:#667eea;
}

.year-dropdown:focus{
  outline:none;
  border-color:#667eea;
  box-shadow:0 0 0 2px rgba(102, 126, 234, 0.2);
}

.calendar-nav{
  background:#f8f9fa;
  border:none;
  border-radius:6px;
  padding:8px 12px;
  cursor:pointer;
  transition:all 0.2s ease;
}

.calendar-nav:hover{
  background:#e9ecef;
}

.calendar-grid{
  background:white;
  border-radius:8px;
  padding:10px;
}

.calendar-weekdays{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:5px;
  margin-bottom:10px;
}

.weekday{
  text-align:center;
  font-size:12px;
  font-weight:500;
  color:#666;
  padding:8px 0;
}

.calendar-days{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:5px;
}

.day{
  text-align:center;
  padding:12px 0;
  border-radius:6px;
  cursor:pointer;
  font-size:14px;
  color:#333;
  transition:all 0.2s ease;
}

.day:hover{
  background:#f8f9fa;
}

.day.disabled{
  color:#ccc;
  cursor:not-allowed;
}

.day.selected{
  background:#667eea;
  color:white;
}

.day.today{
  background:#ffc107;
  color:#333;
}

/* time slots */
.time-slots{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.time-slot{
  border:2px solid #e9ecef;
  border-radius:8px;
  padding:15px;
  cursor:pointer;
  transition:all 0.2s ease;
}

.time-slot:hover{
  border-color:#667eea;
  background:#f8f9ff;
}

.time-slot.selected{
  border-color:#667eea;
  background:#f8f9ff;
}

.slot-time{
  font-size:14px;
  font-weight:500;
  color:#333;
  margin-bottom:4px;
}

.slot-duration{
  font-size:12px;
  color:#666;
}

/* status options */
.status-options{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.status-option{
  display:flex;
  align-items:center;
  gap:12px;
  border:2px solid #e9ecef;
  border-radius:8px;
  padding:15px;
  cursor:pointer;
  transition:all 0.2s ease;
}

.status-option:hover{
  border-color:#667eea;
  background:#f8f9ff;
}

.status-option.selected{
  border-color:#667eea;
  background:#f8f9ff;
}

.status-icon{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:16px;
}

.status-icon.available{
  background:#d4edda;
  color:#155724;
}

.status-icon.unavailable{
  background:#f8d7da;
  color:#721c24;
}

.status-info{
  flex:1;
}

.status-title{
  font-size:14px;
  font-weight:500;
  color:#333;
  margin-bottom:2px;
}

.status-desc{
  font-size:12px;
  color:#666;
}

/* popup footer */
.popup-footer{
  display:flex;
  gap:12px;
  padding:15px;
  border-top:1px solid #eee;
}

.btn-secondary{
  flex:1;
  background:#6c757d;
  color:white;
  padding:12px;
  border:none;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
}

.btn-secondary:hover{
  background:#5a6268;
}

.btn-primary{
  flex:1;
  background:#667eea;
  color:white;
  padding:12px;
  border:none;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
}

.btn-primary:hover{
  background:#5568d3;
}

/* notifications */
.notification-popup{
  max-height:80vh;
}

.notifications-list{
  max-height:400px;
  overflow-y:auto;
}

.notification-item{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:15px;
  border-bottom:1px solid #eee;
  transition:background 0.2s;
}

.notification-item:hover{
  background:#f8f9fa;
}

.notification-item.unread{
  background:#f0f7ff;
}

.notification-icon{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#667eea;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.notification-content{
  flex:1;
}

.notification-title{
  font-size:14px;
  font-weight:500;
  color:#333;
  margin-bottom:4px;
  cursor:pointer;
}

.notification-title:hover{
  color:#667eea;
}

.notification-text{
  font-size:13px;
  color:#666;
  line-height:1.4;
  margin-bottom:4px;
}

.notification-text a{
  color:#667eea;
  text-decoration:none;
}

.notification-text a:hover{
  text-decoration:underline;
}

.notification-time{
  font-size:12px;
  color:#999;
}

/* bottom nav */
/* .bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.08);
  z-index: 1000;
} */

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #666;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  min-width: 50px;
  transition: all 0.2s ease;
}

.bottom-nav a:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.bottom-nav a.active {
  color:#667eea;
  background: rgba(102, 126, 234, 0.1);
}

.bottom-nav i{
  font-size:18px !important;
  margin-bottom:3px;
  display: block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
}

/* Profile Page Specific Styles */
.notification-btn{
  font-size:18px;
  cursor:pointer;
  padding:8px;
  border-radius:50%;
  transition:all 0.3s ease;
  border:2px solid transparent;
  display:flex;
  align-items:center;
  justify-content:center;
}

.notification-btn:hover{
  background:#e0e0e0;
  transform:scale(1.1);
  border-color:#667eea;
}

.notification-btn:active{
  transform:scale(0.95);
}

.spacer{
  width:30px;
}

/* profile header */
.profile-header{
  display:flex;
  align-items:center;
  gap:15px;
  padding:15px;
  background:#f8f9fa;
}

.avatar{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#ddd;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#666;
}

.profile-name h1{
  font-size:20px;
  margin:0;
  color:#333;
}

/* menu list */
.menu-list{
  display:flex;
  flex-direction:column;
  gap:0;
  background:white;
  border-radius:10px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  margin:15px;
  overflow:hidden;
}

.menu-item{
  appearance:none;
  border:none;
  background:transparent;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px;
  cursor:pointer;
  border-bottom:1px solid #eee;
  transition:background 0.2s;
}

.menu-item:last-child{
  border-bottom:none;
}

.menu-item:hover{
  background:#f8f9fa;
}

.mi-left{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:16px;
  color:#333;
}

.mi-left i{
  width:24px;
  color:#666;
  font-size:18px;
}

.menu-item i.fa-chevron-right{
  color:#999;
  font-size:14px;
}

/* extra links */
.extra-links{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:15px;
}

.text-link{
  background:none;
  border:none;
  color:#667eea;
  text-decoration:none;
  font-size:14px;
  cursor:pointer;
  padding:8px 0;
  transition:color 0.2s;
}

.text-link:hover{
  color:#5568d3;
}

.text-link.danger{
  color:#dc3545;
}

.text-link.danger:hover{
  color:#c82333;
}

/* tabs */
.tabs{
  display:flex;
  border-bottom:1px solid #eee;
}

.tab{
  flex:1;
  padding:12px;
  border:none;
  background:none;
  cursor:pointer;
  font-size:14px;
  color:#666;
  border-bottom:2px solid transparent;
  transition:all 0.2s;
}

.tab.active{
  color:#667eea;
  border-bottom-color:#667eea;
  font-weight:500;
}

/* job cards */
.list{
  padding:15px;
}

.job-card{
  background:#f8f9fa;
  border-radius:8px;
  padding:15px;
  margin-bottom:10px;
}

.row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.row.bottom{
  margin-bottom:0;
}

.job-title{
  font-size:16px;
  font-weight:600;
  color:#333;
}

.job-sub{
  font-size:14px;
  color:#666;
}

.job-sub span{
  color:#999;
  margin-left:8px;
}

.amount{
  font-size:18px;
  font-weight:700;
  color:#333;
}

.chip{
  padding:4px 8px;
  border-radius:12px;
  font-size:12px;
  font-weight:500;
}

.chip-success{
  background:#d4edda;
  color:#155724;
}

.chip-danger{
  background:#f8d7da;
  color:#721c24;
}

.details{
  color:#667eea;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
}

.details:hover{
  text-decoration:underline;
}

/* edit profile popup */
.avatar-wrap{
  text-align:center;
  margin-bottom:20px;
}

.avatar-wrap .avatar{
  width:80px;
  height:80px;
  margin:0 auto 10px;
  font-size:32px;
}

.pill-btn{
  background:#667eea;
  color:white;
  border:none;
  padding:8px 16px;
  border-radius:20px;
  font-size:14px;
  cursor:pointer;
  transition:background 0.2s;
}

.pill-btn:hover{
  background:#5568d3;
}

.form-card{
  background:#f8f9fa;
  border-radius:8px;
  padding:15px;
}

.field{
  margin-bottom:15px;
}

.field label{
  display:block;
  font-size:14px;
  font-weight:500;
  color:#333;
  margin-bottom:5px;
}

.fake-input{
  background:white;
  border:1px solid #ddd;
  border-radius:6px;
  padding:10px;
  font-size:14px;
  color:#666;
}

.save-btn{
  background:#667eea;
  color:white;
  border:none;
  width:100%;
  padding:12px;
  border-radius:6px;
  font-size:16px;
  font-weight:500;
  cursor:pointer;
  margin-top:15px;
  transition:background 0.2s;
}

.save-btn:hover{
  background:#5568d3;
}

.field{
  width:100%;
  padding:12px;
  border:2px solid #e9ecef;
  border-radius:8px;
  font-size:14px;
  font-family: 'Roboto', sans-serif;
  transition:all 0.3s ease;
  background:white;
}

.field:focus{
  outline:none;
  border-color:#667eea;
  box-shadow:0 0 0 3px rgba(102, 126, 234, 0.1);
}

.field::placeholder{
  color:#999;
}

/* select wrapper */
.select-wrap{
  position:relative;
}

.select-wrap .field{
  appearance:none;
  padding-right:40px;
  cursor:pointer;
}

.chev{
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  pointer-events:none;
  width:0;
  height:0;
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-top:6px solid #666;
}

.spacer{
  height:20px;
}

/* CTA button */
.cta{
  width:100%;
  padding:15px;
  background:#667eea;
  color:white;
  border:none;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s ease;
}

.cta:hover{
  background:#5568d3;
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(102, 126, 234, 0.3);
}

.cta:disabled{
  background:#e9ecef;
  color:#6c757d;
  cursor:not-allowed;
  transform:none;
}

/* Money Page Specific Styles */
.menu-btn, .notification-btn{
  font-size:18px;
  cursor:pointer;
  padding:8px;
  border-radius:50%;
  transition:all 0.3s ease;
  border:2px solid transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
}

.menu-btn:hover, .notification-btn:hover{
  background:#e0e0e0;
  transform:scale(1.1);
  border-color:#667eea;
}

.menu-btn:active, .notification-btn:active{
  transform:scale(0.95);
}

/* page title */
.page-title{
  font-size:24px;
  font-weight:700;
  margin:20px 15px;
  color:#333;
}

/* earnings card */
.earnings-card{
  background:linear-gradient(135deg, #667eea, #764ba2);
  border-radius:12px;
  padding:25px;
  margin:15px;
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
  color:white;
  cursor:pointer;
  transition:all 0.3s ease;
}

.earnings-card:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 25px rgba(0,0,0,0.2);
}

.earnings-card h2{
  font-size:32px;
  font-weight:700;
  margin:0 0 8px 0;
}

.earnings-card p{
  font-size:14px;
  margin:0;
  opacity:0.9;
}

.months{
  display:flex;
  justify-content:space-between;
  margin-top:15px;
  gap:8px;
}

.months span{
  padding:6px 4px;
  border-radius:4px;
  font-size:12px;
  cursor:pointer;
  transition:all 0.2s ease;
  background:rgba(255,255,255,0.2);
}

.months span:hover{
  background:rgba(255,255,255,0.3);
}

.months span.active{
  background:rgba(255,255,255,0.4);
  font-weight:500;
}

/* balance card */
.balance-card{
  background:white;
  border-radius:12px;
  padding:25px;
  margin:15px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  cursor:pointer;
  transition:all 0.3s ease;
}

.balance-card:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

.balance-card h2{
  font-size:28px;
  font-weight:700;
  margin:0 0 8px 0;
  color:#333;
}

.balance-card p{
  font-size:14px;
  color:#666;
  margin:0;
}

/* section titles */
.section-title{
  font-size:18px;
  font-weight:600;
  color:#333;
  margin:20px 15px 10px;
}

/* transfer row */
.transfer-row{
  display:flex;
  gap:15px;
  margin:0 15px;
}

.transfer-card{
  background:white;
  border-radius:8px;
  padding:20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  flex:1;
  cursor:pointer;
  transition:all 0.3s ease;
}

.transfer-card:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

.transfer-card h2{
  font-size:18px;
  font-weight:600;
  margin:0 0 8px 0;
  color:#333;
}

.transfer-card p{
  font-size:13px;
  color:#666;
  margin:0;
}

.see-all{
  background:#f8f9fa;
  border:none;
  border-radius:8px;
  padding:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#667eea;
  font-weight:500;
  transition:all 0.3s ease;
}

.see-all:hover{
  background:#667eea;
  color:white;
  transform:translateY(-1px);
}

/* placeholders */
.input-placeholder, .history-placeholder{
  background:#f8f9fa;
  border-radius:8px;
  height:60px;
  margin:15px;
}

/* Job Lifecycle Page Specific Styles */
body.job-lifecycle-page {
  padding: 0; /* No bottom padding needed */
}

/* Money Page Specific Styles */
body.money-page {
  padding: 0; /* No bottom padding needed */
}

/* Profile Page Specific Styles */
body.profile-page {
  padding: 0; /* No bottom padding needed */
}

.menu-btn, .notification-btn{
  font-size:18px;
  cursor:pointer;
  padding:8px;
  border-radius:50%;
  transition:all 0.3s ease;
  border:2px solid transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
}

.menu-btn:hover, .notification-btn:hover{
  background:#e0e0e0;
  transform:scale(1.1);
  border-color:#667eea;
}

.menu-btn:active, .notification-btn:active{
  transform:scale(0.95);
}

/* page title */
.page-title{
  font-size:24px;
  font-weight:700;
  margin:20px 15px;
  color:#333;
}

/* job info card with map integration */
.job-card-container{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin:15px;
}

.job-details-section{
  width:100%;
}

.map-section{
  width:100%;
}

.map-card{
  background:#f8f9fa;
  border-radius:12px;
  padding:15px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.map-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.map-header h3{
  font-size:16px;
  font-weight:600;
  color:#333;
  margin:0;
}

.map-btn{
  background:#7e57c2;
  color:white;
  border:none;
  border-radius:6px;
  padding:8px 12px;
  font-size:12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:5px;
  transition:all 0.2s ease;
}

.map-btn:hover{
  background:#6f49b2;
}

.map-container{
  width:100%;
  height:200px;
  border-radius:8px;
  overflow:hidden;
  margin-bottom:15px;
}

.map-placeholder{
  width:100%;
  height:100%;
  background:#e9ecef;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px dashed #ced4da;
  position:relative;
}

.map-content{
  width:100%;
  height:100%;
  background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.map-marker{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  color:#e74c3c;
  font-size:32px;
  z-index:2;
  animation:pulse 2s infinite;
}

.map-overlay{
  position:absolute;
  bottom:10px;
  left:10px;
  right:10px;
  background:rgba(255,255,255,0.95);
  padding:8px 12px;
  border-radius:6px;
  box-shadow:0 2px 8px rgba(0,0,0,0.2);
}

.address-display{
  font-size:12px;
  font-weight:500;
  color:#333;
  text-align:center;
}

@keyframes pulse{
  0%{
    transform:translate(-50%, -50%) scale(1);
  }
  50%{
    transform:translate(-50%, -50%) scale(1.1);
  }
  100%{
    transform:translate(-50%, -50%) scale(1);
  }
}

.map-loading{
  text-align:center;
  color:#6c757d;
}

.map-loading i{
  font-size:24px;
  margin-bottom:8px;
  display:block;
}

.map-loading p{
  margin:0;
  font-size:14px;
}

.map-info{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.location-info,
.distance-info{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#666;
}

.location-info i,
.distance-info i{
  color:#667eea;
  width:16px;
}

.job-card{
  background:#f8f9fa;
  border-radius:12px;
  padding:20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.job-card-nav{
  margin-top:15px;
  padding-top:15px;
  border-top:1px solid #e9ecef;
}

.job-card-nav .map-btn{
  width:100%;
  justify-content:center;
  padding:12px 16px;
  font-size:14px;
  font-weight:500;
}

.job-card h2{
  font-size:18px;
  font-weight:600;
  color:#333;
  margin:0 0 12px 0;
}

.job-card p{
  font-size:14px;
  color:#666;
  margin:0 0 8px 0;
}

/* timeline card */
.timeline-card{
  background:white;
  border-radius:12px;
  padding:20px;
  margin:15px auto;
  max-width:500px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.timeline{
  position:relative;
}

.timeline::before{
  content:'';
  position:absolute;
  left:20px;
  top:40px;
  bottom:40px;
  width:2px;
  background:#e9ecef;
}

.step{
  display:flex;
  align-items:flex-start;
  gap:20px;
  margin-bottom:40px;
  position:relative;
}

.step:last-child{
  margin-bottom:0;
}

.circle{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#e9ecef;
  border:3px solid white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  color:#999;
  flex-shrink:0;
  position:relative;
  z-index:1;
  transition:all 0.3s ease;
}

.step.active .circle{
  background:#667eea;
  color:white;
  transform:scale(1.1);
  box-shadow:0 0 0 4px rgba(102, 126, 234, 0.2);
}

.step.completed .circle{
  background:#4caf50;
  color:white;
}

.content{
  flex:1;
  padding-top:5px;
}

.content h3{
  font-size:16px;
  font-weight:600;
  color:#333;
  margin:0 0 12px 0;
}

.btn{
  padding:8px 16px;
  border:none;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
}

.btn.green{
  background:#28a745;
  color:white;
}

.btn.green:hover{
  background:#218838;
  transform:translateY(-1px);
}

.btn.red{
  background:#dc3545;
  color:white;
}

.btn.red:hover{
  background:#c82333;
  transform:translateY(-1px);
}

.btn.disabled{
  background:#e9ecef;
  color:#6c757d;
  cursor:not-allowed;
  transform:none;
}

.btn.disabled:hover{
  background:#e9ecef;
  transform:none;
}

/* popup body */
.popup-body{
  padding:15px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  font-size:14px;
  font-weight:500;
  color:#333;
  margin-bottom:8px;
}

.current-status{
  background:#f8f9fa;
  padding:10px;
  border-radius:6px;
  font-size:14px;
  color:#667eea;
  font-weight:500;
}

.status-options{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.status-option{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  border:2px solid #e9ecef;
  border-radius:8px;
  cursor:pointer;
  transition:all 0.2s ease;
}

.status-option:hover{
  border-color:#667eea;
  background:#f8f9ff;
}

.status-option input[type="radio"]{
  margin:0;
}

.status-label{
  font-size:14px;
  font-weight:500;
  color:#333;
}

.status-desc{
  font-size:12px;
  color:#666;
  margin-top:2px;
}

.time-info{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#666;
  margin-top:15px;
  padding:10px;
  background:#f8f9fa;
  border-radius:6px;
}

/* Job History Page Specific Styles */
.menu-btn, .notification-btn{
  font-size:18px;
  cursor:pointer;
  padding:8px;
  border-radius:50%;
  transition:all 0.3s ease;
  border:2px solid transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
}

.menu-btn:hover, .notification-btn:hover{
  background:#e0e0e0;
  transform:scale(1.1);
  border-color:#667eea;
}

.menu-btn:active, .notification-btn:active{
  transform:scale(0.95);
}

.spacer{
  width:30px;
}

/* page title */
.page-title{
  font-size:24px;
  font-weight:700;
  margin:20px 15px;
  color:#333;
}

/* tabs */
.tabs-wrap{
  margin:0 15px 20px;
}

.tabs{
  display:flex;
  border-bottom:1px solid #eee;
}

.tab{
  flex:1;
  padding:12px;
  border:none;
  background:none;
  cursor:pointer;
  font-size:14px;
  color:#666;
  border-bottom:2px solid transparent;
  transition:all 0.2s;
}

.tab.active{
  color:#667eea;
  border-bottom-color:#667eea;
  font-weight:500;
}

/* job cards */
.content{
  padding:0 15px;
}

.job-card{
  background:#f8f9fa;
  border-radius:8px;
  padding:15px;
  margin:15px auto;
  max-width:500px;
  transition:all 0.3s ease;
}

.job-card:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.row.bottom{
  margin-bottom:0;
}

.job-title{
  font-size:16px;
  font-weight:600;
  color:#333;
  margin:0;
}

.job-sub{
  font-size:14px;
  color:#666;
  margin:0;
}

.job-sub span{
  color:#999;
  margin-left:8px;
}

.amount{
  font-size:18px;
  font-weight:700;
  color:#333;
}

.chip{
  padding:4px 8px;
  border-radius:12px;
  font-size:12px;
  font-weight:500;
}

.chip-success{
  background:#d4edda;
  color:#155724;
}

.chip-danger{
  background:#f8d7da;
  color:#721c24;
}

.details{
  color:#667eea;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  transition:all 0.2s ease;
}

.details:hover{
  text-decoration:underline;
  color:#5568d3;
}

.details i{
  font-size:12px;
  margin-left:4px;
}

/* bottom nav button styling */
.bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #666;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  min-width: 50px;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.bottom-nav button:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.bottom-nav button.active {
  color:#667eea;
  background: rgba(102, 126, 234, 0.1);
}

/* Document Verification Page Specific Styles */
.menu-btn, .notification-btn{
  font-size:18px;
  cursor:pointer;
  padding:8px;
  border-radius:50%;
  transition:all 0.3s ease;
  border:2px solid transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
}

.menu-btn:hover, .notification-btn:hover{
  background:#e0e0e0;
  transform:scale(1.1);
  border-color:#667eea;
}

.menu-btn:active, .notification-btn:active{
  transform:scale(0.95);
}

/* page title */
.page-title{
  font-size:24px;
  font-weight:700;
  margin:20px 15px;
  color:#333;
}

.subtitle{
  font-size:14px;
  color:#666;
  margin:0 15px 20px;
  line-height:1.4;
}

/* alert */
.alert{
  background:#fff3cd;
  border:1px solid #ffeaa7;
  border-radius:8px;
  padding:12px;
  margin:15px;
  display:flex;
  gap:12px;
  cursor:pointer;
  transition:all 0.2s ease;
}

.alert:hover{
  background:#fff8dc;
  transform:translateY(-1px);
}

.alert-icon{
  width:24px;
  height:24px;
  background:#ffc107;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  flex-shrink:0;
}

.alert-content{
  flex:1;
}

.alert-title{
  font-size:14px;
  font-weight:600;
  color:#856404;
  margin-bottom:4px;
}

.alert-desc{
  font-size:13px;
  color:#856404;
  line-height:1.4;
}

/* document blocks */
.block{
  margin:15px;
}

.label{
  font-size:14px;
  font-weight:600;
  color:#333;
  margin-bottom:8px;
}

/* upload box */
.upload-box{
  background:white;
  border:2px dashed #ddd;
  border-radius:12px;
  padding:20px;
  text-align:center;
  cursor:pointer;
  transition:all 0.3s ease;
  position:relative;
  min-height:120px;
}

.upload-box:hover{
  border-color:#667eea;
  background:#f8f9ff;
  transform:translateY(-2px);
}

.upload-top{
  position:absolute;
  top:10px;
  right:10px;
  font-size:18px;
  color:#999;
}

.upload-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height:100%;
}

.doc-icon{
  font-size:32px;
  color:#667eea;
  margin-bottom:8px;
}

.upload-title{
  font-size:16px;
  font-weight:600;
  color:#333;
  margin-bottom:4px;
}

.upload-sub{
  font-size:13px;
  color:#666;
}

/* photo card */
.photo-card{
  background:white;
  border:2px dashed #ddd;
  border-radius:12px;
  padding:20px;
  display:flex;
  gap:15px;
  cursor:pointer;
  transition:all 0.3s ease;
}

.photo-card:hover{
  border-color:#667eea;
  background:#f8f9ff;
  transform:translateY(-2px);
}

.avatar{
  width:80px;
  height:80px;
  border-radius:50%;
  background:#f8f9fa;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  flex-shrink:0;
}

.user-mark{
  width:20px;
  height:20px;
  background:#667eea;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:12px;
  position:absolute;
  bottom:0;
  right:0;
}

.photo-right{
  flex:1;
}

.photo-right p{
  font-size:13px;
  color:#666;
  line-height:1.4;
  margin:0 0 12px 0;
}

.btn-outline{
  background:white;
  border:2px solid #667eea;
  color:#667eea;
  padding:8px 16px;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
}

.btn-outline:hover{
  background:#667eea;
  color:white;
  transform:translateY(-1px);
}

/* CTA button */
.cta{
  display:block;
  width:calc(100% - 30px);
  margin:30px auto;
  padding:15px;
  background:#667eea;
  color:white;
  border:none;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s ease;
}

.cta:hover{
  background:#5568d3;
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(102, 126, 234, 0.3);
}

.cta:disabled{
  background:#4caf50;
  cursor:not-allowed;
  transform:none;
}

/* Booking Request Page Specific Styles */
.menu-btn, .notification-btn{
  font-size:18px;
  cursor:pointer;
  padding:8px;
  border-radius:50%;
  transition:all 0.3s ease;
  border:2px solid transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
}

.menu-btn:hover, .notification-btn:hover{
  background:#e0e0e0;
  transform:scale(1.1);
  border-color:#667eea;
}

.menu-btn:active, .notification-btn:active{
  transform:scale(0.95);
}

/* page title */
.page-title{
  font-size:24px;
  font-weight:700;
  margin:20px 15px;
  color:#333;
}

/* booking card */
.booking-card{
  background:white;
  border-radius:12px;
  padding:20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  margin:15px;
}

.booking-card h2{
  font-size:18px;
  font-weight:600;
  color:#333;
  margin:0 0 8px 0;
}

.booking-card .date{
  font-size:14px;
  color:#666;
  margin:0 0 12px 0;
}

.status{
  display:inline-block;
  background:#fff3cd;
  color:#856404;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:500;
  margin-bottom:15px;
}

.status.accepted{
  background:#d4edda;
  color:#155724;
}

.status.rejected{
  background:#f8d7da;
  color:#721c24;
}

/* action buttons */
.action-buttons{
  display:flex;
  gap:12px;
  margin-bottom:20px;
}

.action-buttons button{
  flex:1;
  padding:12px;
  border:none;
  border-radius:8px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}

.accept{
  background:#28a745;
  color:white;
}

.accept:hover{
  background:#218838;
  transform:translateY(-1px);
}

.reject{
  background:#dc3545;
  color:white;
}

.reject:hover{
  background:#c82333;
  transform:translateY(-1px);
}

hr{
  border:none;
  border-top:1px solid #eee;
  margin:20px 0;
}

/* list items */
.list-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  cursor:pointer;
  transition:all 0.2s ease;
  border-bottom:1px solid #f8f9fa;
}

.list-item:last-child{
  border-bottom:none;
}

.list-item:hover{
  background:#f8f9fa;
  padding-left:8px;
  color:#667eea;
}

.list-item span{
  font-size:14px;
  color:#333;
}

.list-item i{
  color:#999;
  font-size:14px;
  transition:all 0.2s ease;
}

.list-item:hover i{
  color:#667eea;
  transform:translateX(4px);
}

/* Dashboard Page Specific Styles */
.menu-btn, .notification-btn{
  font-size:18px;
  cursor:pointer;
  padding:8px;
  border-radius:50%;
  transition:all 0.3s ease;
  border:2px solid transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
}

.menu-btn:hover, .notification-btn:hover{
  background:#e0e0e0;
  transform:scale(1.1);
  border-color:#667eea;
}

.menu-btn:active, .notification-btn:active{
  transform:scale(0.95);
}

/* page title */
.page-title{
  font-size:24px;
  font-weight:700;
  margin:20px 15px;
  color:#333;
}

/* stats grid */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
  gap:15px;
  margin:0 15px 20px;
}

.stat-card{
  background:white;
  border-radius:12px;
  padding:20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  cursor:pointer;
  transition:all 0.3s ease;
  text-align:center;
}

.stat-card:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

.stat-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  margin:0 auto 12px;
  color:white;
}

.stat-icon.bookings{
  background:linear-gradient(135deg, #667eea, #764ba2);
}

.stat-icon.earnings{
  background:linear-gradient(135deg, #f093fb, #f5576c);
}

.stat-icon.pending{
  background:linear-gradient(135deg, #4facfe, #00f2fe);
}

.stat-label{
  font-size:12px;
  color:#666;
  margin-bottom:8px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.stat-value{
  font-size:24px;
  font-weight:700;
  color:#333;
  margin:0;
}

/* overview section */
.overview-section{
  margin:0 15px;
}

.section-title{
  font-size:18px;
  font-weight:600;
  color:#333;
  margin-bottom:15px;
}

.overview-card{
  background:white;
  border-radius:12px;
  padding:15px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  margin-bottom:15px;
  cursor:pointer;
  transition:all 0.3s ease;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.overview-card:hover{
  transform:translateX(4px);
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

.overview-content{
  display:flex;
  align-items:center;
  gap:12px;
  flex:1;
}

.overview-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  background:#f8f9fa;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#666;
  transition:all 0.3s ease;
}

.overview-card:hover .overview-icon{
  background:linear-gradient(135deg, #667eea, #764ba2);
  color:white;
}

.overview-details h3{
  font-size:16px;
  font-weight:600;
  color:#333;
  margin:0 0 4px 0;
}

.overview-count{
  font-size:14px;
  color:#667eea;
  font-weight:600;
  margin:0;
}

.overview-action{
  color:#999;
  font-size:14px;
  transition:all 0.3s ease;
}

.overview-card:hover .overview-action{
  color:#667eea;
  transform:translateX(4px);
}

/* earnings overview */
.earnings-overview{
  background:white;
  border-radius:12px;
  padding:20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.earnings-overview h3{
  font-size:16px;
  font-weight:600;
  color:#333;
  margin:0 0 12px 0;
}

.earnings-amount{
  font-size:28px;
  font-weight:700;
  color:#667eea;
  margin:0 0 20px 0;
}

.earnings-chart{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  height:60px;
  gap:8px;
}

.month-bar{
  flex:1;
  background:#e9ecef;
  border-radius:4px;
  position:relative;
  min-height:8px;
  cursor:pointer;
  transition:all 0.3s ease;
}

.month-bar::after{
  content:attr(data-month);
  position:absolute;
  bottom:-20px;
  left:50%;
  transform:translateX(-50%);
  font-size:10px;
  color:#999;
  white-space:nowrap;
}

.month-bar.active{
  background:linear-gradient(135deg, #667eea, #764ba2);
  min-height:40px;
}

.month-bar:hover{
  background:#dee2e6;
}

.month-bar.active:hover{
  background:linear-gradient(135deg, #5568d3, #6a48b3);
}

/* ===== WITHDRAWAL REQUEST BUTTON ===== */
.withdrawal-request-btn {
  width: 100%;
  background: var(--sp-card-bg);
  color: var(--sp-text-primary);
  border: none;
  padding: 16px 20px;
  border-radius: var(--sp-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.withdrawal-request-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a72d8, #6a4190);
}

.withdrawal-request-btn:active {
  transform: translateY(0);
}

.withdrawal-request-btn i {
  font-size: 18px;
}

/* ===== EARNINGS HISTORY POPUP ===== */
.earnings-history-popup {
  max-width: 460px;
  width: min(92%, 460px);
}

.earnings-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 20px 16px;
}

.summary-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 14px 12px;
  border-radius: 14px;
  text-align: left;
  border: 1px solid #e7edf7;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.summary-card h3 {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.summary-card p {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin: 0 20px 16px;
  padding: 4px;
  background: #f3f6fb;
  border-radius: 14px;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.tab-btn.active {
  color: #1e293b;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.tab-btn:hover {
  color: #334155;
}

.earnings-list {
  max-height: 360px;
  overflow-y: auto;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.earning-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #e7edf7;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.earning-item:last-child {
  border-bottom: 1px solid #e7edf7;
}

.earning-icon,
.transaction-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.earning-icon.completed,
.transaction-icon.completed {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.earning-icon.pending,
.transaction-icon.pending {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.earning-icon.failed,
.transaction-icon.failed {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.earning-content,
.earning-info,
.transaction-info {
  flex: 1;
  min-width: 0;
}

.earning-topline,
.transaction-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.earning-copy {
  min-width: 0;
}

.earning-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.earning-title,
.transaction-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.earning-subtitle,
.transaction-subtitle,
.earning-caption,
.transaction-caption {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.earning-details,
.transaction-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
  margin-top: 10px;
}

.earning-details span,
.transaction-details span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.earning-details i,
.transaction-details i {
  color: #94a3b8;
}

.earning-amount,
.transaction-amount {
  text-align: right;
  flex-shrink: 0;
}

.earning-amount .amount,
.transaction-amount .amount {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.status-chip.completed {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.status-chip.pending {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.status-chip.failed {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.earning-reference,
.transaction-id {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  color: #475569;
  max-width: 100%;
}

.ref-label {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.ref-value {
  min-width: 0;
  overflow-wrap: anywhere;
}

.transaction-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.transaction-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: var(--sp-radius);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  color: #475569;
}

.transaction-meta-row span {
  flex: 0 0 92px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.transaction-meta-row strong {
  flex: 1;
  min-width: 0;
  color: #1e293b;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  overflow-wrap: anywhere;
}

.transaction-meta-row.transaction-meta-notes {
  align-items: flex-start;
}

.earning-item.settled .status {
  color: #28a745;
}

.earning-item.completed .status {
  color: #28a745;
}

.earning-item.pending .status {
  color: #ffc107;
}

.earning-item.failed .status {
  color: #dc3545;
}

.no-earnings,
.no-transactions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 36px 20px;
  color: #64748b;
  font-size: 14px;
  border: 1px dashed #d9e2ef;
  border-radius: 16px;
  background: #fbfcff;
}

.no-earnings i,
.no-transactions i {
  font-size: 24px;
  color: #94a3b8;
}

.no-earnings small,
.no-transactions small {
  font-size: 12px;
  color: #94a3b8;
}

body.money-page .history-placeholder {
  background: transparent;
  border-radius: 0;
  height: auto;
  min-height: 84px;
  margin: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.money-page .section-title {
  font-size: 20px;
  text-align: center;
  margin: 16px 15px 12px;
  padding: 12px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(20, 28, 40, 0.06);
}

.transaction-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e7edf7;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.transaction-top {
  align-items: center;
  flex-wrap: wrap;
}

.transaction-item .transaction-icon {
  width: 42px;
  height: 42px;
}

.transaction-item .transaction-info {
  width: 100%;
}

.transaction-item .transaction-amount {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
  text-align: left;
}

.transaction-caption {
  text-align: right;
}

.transaction-item .transaction-caption {
  text-align: left;
  margin-top: 0;
}

.transaction-id {
  margin-top: 8px;
}

.transaction-item .transaction-details {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.transaction-item .transaction-meta-row {
  flex-direction: column;
  gap: 4px;
}

.transaction-item .transaction-meta-row span,
.transaction-item .transaction-meta-row strong {
  flex: 0 0 auto;
  text-align: left;
}

.transfer-details-btn {
  margin-top: 12px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #7e57c2;
  border-radius: 999px;
  background: #ffffff;
  color: #7e57c2;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.transfer-detail-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transfer-detail-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.transfer-detail-copy {
  flex: 1;
  min-width: 0;
}

.transfer-detail-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.transfer-details-popup .popup-body {
  padding: 20px;
}

/* ===== WITHDRAWAL POPUP ===== */
#withdrawalPopup {
  padding: 16px;
  overflow-y: auto;
  z-index: 1200;
}

.withdrawal-popup {
  max-width: 420px;
  width: min(100%, 420px);
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}

.withdrawal-popup .popup-body {
  flex: 1 1 auto;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.withdrawal-popup .popup-body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.withdrawal-popup #withdrawalForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.withdrawal-balance-panel {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(126, 87, 194, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8f5ff 0%, #f2f6ff 100%);
}

.withdrawal-balance-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.withdrawal-panel-kicker {
  color: var(--sp-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.withdrawal-balance-panel h3 {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
}

.withdrawal-balance-panel .balance-card {
  padding: 18px 20px;
  border: 1px solid rgba(126, 87, 194, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.withdrawal-balance-panel .balance-card p {
  margin: 0;
  color: #111827;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.withdrawal-section-title {
  margin: 0;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d5dce6;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sp-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.12);
  transform: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

.form-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
  display: block;
  font-style: normal;
}

.fee-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 0;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #475569;
  gap: 12px;
}

.fee-row.total {
  font-weight: 700;
  color: #111827;
  border-top: 1px solid #dbe4ee;
  padding-top: 12px;
  margin-top: 12px;
  font-size: 16px;
}

.form-actions {
  display: flex;
  gap: 12px;
}

.withdrawal-popup .form-actions {
  margin-top: 2px;
}

.withdrawal-popup .form-actions .btn-secondary,
.withdrawal-popup .form-actions .btn-primary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

.withdrawal-popup .form-actions .btn-secondary {
  flex: 0 0 36%;
}

.withdrawal-popup .form-actions .btn-primary {
  flex: 1 1 auto;
  padding-inline: 18px;
  text-transform: none;
  letter-spacing: 0.2px;
}

.btn-secondary,
.btn-primary {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary {
  background: #f8f9fa;
  color: #6c757d;
  border: 2px solid #e9ecef;
}

.btn-secondary:hover {
  background: #e9ecef;
  color: #495057;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary {
  background: var(--sp-card-bg);
  color: var(--sp-text-primary);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a72d8, #6a4190);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary:disabled::before {
  display: none;
}

@media (max-width: 480px) {
  #withdrawalPopup {
    padding: 12px;
    align-items: center;
  }

  .withdrawal-popup {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 24px);
  }

  .withdrawal-popup .popup-body {
    padding: 18px 16px 20px;
  }

  .withdrawal-popup .form-actions {
    flex-direction: column-reverse;
  }

  .withdrawal-balance-panel .balance-card p {
    font-size: 28px;
  }

  .earnings-summary {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    margin: 0 16px 14px;
  }

  .earnings-list {
    padding: 0 16px 18px;
  }

  .earning-topline,
  .transaction-item {
    flex-direction: column;
  }

  .earning-amount,
  .transaction-amount,
  .transaction-caption {
    text-align: left;
  }
}



.loading-spinner {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 14px;
}

/* ===== PROVIDER AUTH PAGES ===== */
body.provider-auth-page {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100dvh;
  background:
    radial-gradient(circle at top left, rgba(126, 87, 194, 0.16), transparent 36%),
    radial-gradient(circle at top right, rgba(102, 126, 234, 0.18), transparent 32%),
    linear-gradient(180deg, #f6f8ff 0%, #eef2fb 100%);
}

body.provider-auth-page .auth-shell {
  width: min(100%, 430px);
  min-height: 100dvh;
  padding: 24px 16px;
  display: flex;
  align-items: center;
}

body.provider-register-page .auth-shell {
  align-items: flex-start;
}

body.provider-auth-page .auth-layout {
  width: 100%;
}

body.provider-auth-page .auth-panel {
  position: relative;
  width: 100%;
  padding: 28px 22px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfdff 100%);
  border: 1.5px solid #cfd8ee;
  box-shadow:
    0 22px 46px rgba(44, 62, 110, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.92) inset;
  overflow: hidden;
}

body.provider-auth-page .auth-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 96px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(126, 87, 194, 0.16));
  pointer-events: none;
}

body.provider-auth-page .auth-icon-circle,
body.provider-auth-page .auth-brand,
body.provider-auth-page .auth-heading,
body.provider-auth-page .auth-subheading,
body.provider-auth-page .auth-unified-form,
body.provider-auth-page .auth-meta {
  position: relative;
  z-index: 1;
}

body.provider-auth-page .auth-icon-circle {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #7e57c2);
  color: #ffffff;
  font-size: 30px;
  box-shadow: 0 14px 32px rgba(102, 126, 234, 0.28);
}

body.provider-auth-page .auth-brand {
  margin: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #667eea;
}

body.provider-auth-page .auth-heading {
  margin: 14px 0 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #20263a;
}

body.provider-auth-page .auth-subheading {
  max-width: 310px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
  color: #667085;
}

body.provider-auth-page .auth-unified-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.provider-auth-page .auth-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.provider-auth-page .auth-label {
  font-size: 13px;
  font-weight: 600;
  color: #30384f;
}

body.provider-auth-page .auth-input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1.5px solid #d9dfef;
  background: #f8faff;
  color: #24304a;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body.provider-auth-page .auth-input::placeholder {
  color: #8c93a7;
}

body.provider-auth-page .auth-input:focus {
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}

body.provider-forgot-page {
  background:
    radial-gradient(circle at top left, rgba(126, 87, 194, 0.16), transparent 36%),
    radial-gradient(circle at top right, rgba(102, 126, 234, 0.18), transparent 32%),
    linear-gradient(180deg, #f6f8ff 0%, #eef2fb 100%);
}

body.provider-forgot-page .auth-icon-circle {
  margin-top: 8px;
  margin-bottom: 20px;
}

body.provider-forgot-page .auth-brand {
  margin-top: 6px;
}

body.provider-forgot-page .provider-forgot-note {
  margin: -2px 0 0;
  padding: 12px 14px;
  border: 1px solid #d7e7fb;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
  color: #58708d;
  font-size: 12px;
  line-height: 1.6;
}

body.provider-auth-page .auth-select-wrap {
  position: relative;
}

body.provider-auth-page .auth-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #7d85a1;
  border-bottom: 2px solid #7d85a1;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

body.provider-auth-page .auth-select {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

body.provider-auth-page .auth-note {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #7f879a;
}

body.provider-auth-page .password-requirements small {
  font-size: inherit;
  color: inherit;
}

body.provider-auth-page .auth-helper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: -4px;
}

body.provider-auth-page .auth-helper-row.auth-helper-row-inline {
  align-items: center;
}

body.provider-auth-page .auth-helper-row.auth-helper-row-end {
  justify-content: flex-end;
}

body.provider-auth-page .auth-helper-copy {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  color: #7f879a;
}

body.provider-auth-page .provider-documents-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

body.provider-auth-page .provider-documents-header {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f7f9ff 0%, #eef3ff 100%);
  border: 1px solid #dde5fb;
}

body.provider-auth-page .provider-documents-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #667eea;
}

body.provider-auth-page .provider-documents-header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: #20263a;
}

body.provider-auth-page .provider-documents-copy {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: #667085;
}

body.provider-auth-page .provider-documents-trigger {
  width: 100%;
  border: 1.5px solid #dde5fb;
  border-radius: 22px;
  background: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

body.provider-auth-page .provider-documents-trigger:hover {
  transform: translateY(-1px);
  border-color: #c3d2fb;
  box-shadow: 0 14px 28px rgba(46, 62, 100, 0.08);
}

body.provider-auth-page .provider-documents-trigger.in-progress {
  border-color: #c9d7ff;
  background: #f8faff;
}

body.provider-auth-page .provider-documents-trigger.complete {
  border-color: #97ccac;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf8 100%);
}

body.provider-auth-page .provider-documents-trigger-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

body.provider-auth-page .provider-documents-trigger-copy strong {
  font-size: 15px;
  color: #24304a;
}

body.provider-auth-page .provider-documents-trigger-copy span {
  font-size: 12px;
  line-height: 1.5;
  color: #667085;
}

body.provider-auth-page .provider-documents-trigger-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #5565a3;
  font-size: 12px;
  font-weight: 700;
}

body.provider-auth-page .provider-documents-trigger.complete .provider-documents-trigger-badge {
  background: #e5f5ea;
  color: #2e7d32;
}

body.provider-auth-page .provider-documents-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff7e8;
  border: 1px solid #f4dfb4;
  color: #8a6116;
  font-size: 13px;
  line-height: 1.5;
}

body.provider-auth-page .provider-documents-alert i {
  margin-top: 2px;
  color: #d08b12;
}

body.provider-auth-page .provider-documents-grid {
  display: grid;
  gap: 14px;
}

body.provider-auth-page .provider-document-card {
  padding: 16px;
  border-radius: 22px;
  border: 1.5px solid #e1e7f6;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(46, 62, 100, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

body.provider-auth-page .provider-document-card:hover {
  transform: translateY(-1px);
  border-color: #cbd6f6;
  box-shadow: 0 16px 32px rgba(46, 62, 100, 0.1);
}

body.provider-auth-page .provider-document-card.has-file {
  border-color: #97ccac;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf8 100%);
}

body.provider-auth-page .provider-document-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

body.provider-auth-page .provider-document-heading {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #24304a;
}

body.provider-auth-page .provider-document-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff0f0;
  color: #c62828;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.provider-auth-page .provider-document-tag.optional-tag {
  background: #eef2ff;
  color: #4c5d8b;
}

body.provider-auth-page .provider-document-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eef2ff;
  color: #667eea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

body.provider-auth-page .provider-document-drop {
  min-height: 148px;
  padding: 16px;
  border-radius: 18px;
  border: 1.5px dashed #d5def3;
  background: #f8faff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

body.provider-auth-page .provider-document-card.has-file .provider-document-drop {
  border-style: solid;
  background: #ffffff;
}

body.provider-auth-page .provider-document-preview {
  width: 100%;
  max-height: 180px;
  border-radius: 14px;
  object-fit: contain;
  display: block;
}

body.provider-auth-page .provider-document-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #667085;
}

body.provider-auth-page .provider-document-placeholder i {
  font-size: 24px;
  color: #667eea;
}

body.provider-auth-page .provider-document-placeholder strong {
  color: #24304a;
  font-size: 14px;
}

body.provider-auth-page .provider-document-placeholder span {
  font-size: 12px;
  line-height: 1.5;
}

body.provider-auth-page .provider-document-card-profile .provider-document-drop {
  display: block;
}

body.provider-auth-page .provider-document-avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  background: #eef2ff;
  box-shadow: 0 10px 24px rgba(102, 126, 234, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.provider-auth-page .provider-document-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.provider-auth-page .provider-document-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #667eea;
  font-size: 28px;
}

body.provider-auth-page .provider-profile-status {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #667085;
}

body.provider-auth-page .provider-document-actions {
  margin-top: 14px;
}

body.provider-auth-page .provider-document-button {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

body.provider-auth-page .provider-register-note {
  margin-top: -2px;
  text-align: center;
}

body.provider-auth-page .provider-documents-popup {
  width: min(100%, 420px);
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}

body.provider-auth-page .provider-documents-popup-body {
  overflow-y: auto;
}

body.provider-auth-page .provider-documents-popup-copy {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #667085;
}

body.provider-auth-page .provider-document-preview[hidden],
body.provider-auth-page .provider-document-avatar img[hidden],
body.provider-auth-page .provider-document-placeholder[hidden],
body.provider-auth-page .provider-document-avatar-placeholder[hidden] {
  display: none !important;
}

body.provider-auth-page .auth-submit-btn {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #667eea, #7e57c2);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(102, 126, 234, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

body.provider-auth-page .auth-submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 34px rgba(102, 126, 234, 0.3);
}

body.provider-auth-page .auth-submit-btn:disabled {
  background: #dce2f0;
  color: #75809a;
  cursor: not-allowed;
  box-shadow: none;
}

body.provider-auth-page .auth-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #edf1f7;
  text-align: center;
}

body.provider-auth-page .auth-footnote {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #677087;
}

body.provider-auth-page .auth-footnote + .auth-footnote {
  margin-top: 10px;
}

body.provider-auth-page .auth-legal {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: #8d95a8;
}

body.provider-auth-page .auth-page-link,
body.provider-auth-page .auth-footnote a,
body.provider-auth-page .auth-legal a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

body.provider-auth-page .auth-page-link:hover,
body.provider-auth-page .auth-footnote a:hover,
body.provider-auth-page .auth-legal a:hover {
  text-decoration: underline;
}

body.provider-auth-page .otp-inputs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.provider-auth-page .otp-inputs.otp-inputs-six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.provider-auth-page .otp-input {
  width: 100%;
  height: 60px;
  margin-bottom: 0;
  border: 1.5px solid #d9dfef;
  border-radius: 16px;
  background: #f8faff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #24304a;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body.provider-auth-page .otp-input:focus {
  outline: none;
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}

@media (max-width: 768px) {
  body.provider-auth-page {
    background:
      radial-gradient(circle at top left, rgba(126, 87, 194, 0.12), transparent 34%),
      linear-gradient(180deg, #f8faff 0%, #eef2fb 100%);
  }

  body.provider-auth-page .auth-shell {
    width: 100%;
    padding: 16px;
  }

  body.provider-auth-page .auth-panel {
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  body.provider-auth-page .auth-heading {
    font-size: 26px;
  }

  body.provider-auth-page .auth-subheading {
    font-size: 13px;
  }

  body.provider-auth-page .provider-documents-header {
    padding: 16px;
  }

  body.provider-auth-page .provider-documents-header h2 {
    font-size: 18px;
  }

  body.provider-auth-page .provider-document-card {
    padding: 14px;
    border-radius: 20px;
  }

  body.provider-auth-page .provider-documents-trigger {
    padding: 14px 16px;
    border-radius: 20px;
    align-items: flex-start;
  }

  body.provider-auth-page .provider-documents-trigger-badge {
    min-width: 84px;
  }

  body.provider-auth-page .auth-input,
  body.provider-auth-page .auth-submit-btn {
    height: 52px;
  }

  body.provider-auth-page .auth-helper-row {
    flex-direction: column;
    align-items: flex-start;
  }

  body.provider-auth-page .auth-helper-row.auth-helper-row-inline {
    flex-direction: row;
    align-items: center;
  }
}

/* schedule management dynamic states */
.schedule-summary-grid {
  grid-template-columns: repeat(4, 1fr);
}

.schedule-note {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.input-helper {
  display: block;
  margin-top: 8px;
  color: #666;
  font-size: 12px;
  line-height: 1.4;
}

.schedule-detail-panel {
  margin-top: 4px;
  padding: 14px;
  border: 1px solid #dbe3ff;
  border-radius: 10px;
  background: #f8f9ff;
  color: #344054;
  font-size: 13px;
  line-height: 1.5;
}

.slot-insight-line + .slot-insight-line {
  margin-top: 6px;
}

.schedule-updates-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-update-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  background: #fff;
}

.schedule-update-item.empty {
  justify-content: center;
  color: #666;
  background: #f8f9fa;
}

.schedule-update-title {
  margin-bottom: 4px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.schedule-update-meta {
  color: #666;
  font-size: 12px;
}

.slot-tag,
.time-slot-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.slot-tag.available,
.time-slot-pill.available {
  background: #d4edda;
  color: #155724;
}

.slot-tag.unavailable,
.time-slot-pill.unavailable {
  background: #f8d7da;
  color: #721c24;
}

.slot-tag.blocked,
.time-slot-pill.blocked {
  background: #fff3cd;
  color: #856404;
}

.time-slot-pill.booked {
  background: #fde7e9;
  color: #b42318;
}

.time-slot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.empty-state-card {
  justify-content: center;
  color: #666;
  background: #f8f9fa;
}

.day.available-day {
  background: #e8f5e9;
  color: #1b5e20;
  font-weight: 600;
}

.day.unavailable-day {
  background: #f8d7da;
  color: #721c24;
  font-weight: 600;
}

.day.blocked-day {
  background: #fff3cd;
  color: #856404;
  font-weight: 600;
}

.day.has-booking {
  background: #fde7e9;
  color: #b42318;
  font-weight: 600;
}

.day.selected.available-day,
.day.selected.unavailable-day,
.day.selected.blocked-day,
.day.selected.has-booking {
  background: #667eea;
  color: #fff;
}

.notification-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 480px) {
  .schedule-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-update-item {
    flex-direction: column;
  }
}

body.booking-requests-page {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body.booking-requests-page.dashboard-page .main-content {
  gap: 0;
}

body.booking-requests-page.dashboard-page .header.dashboard-hero {
  padding: 14px 0 18px;
  border-bottom: 1px solid #e5e7eb;
}

body.booking-requests-page.dashboard-page .dashboard-hero-top {
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

body.booking-requests-page.dashboard-page .dashboard-brand {
  justify-content: center;
  gap: 0;
  align-items: center;
}

body.booking-requests-page.dashboard-page .header-info {
  flex: 0 1 auto;
  align-items: center;
  text-align: center;
}

body.booking-requests-page.dashboard-page .header h3 {
  font-size: 24px;
  line-height: 1.1;
}

body.booking-requests-page.dashboard-page .header p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

body.booking-requests-page.dashboard-page .notification-btn {
  position: absolute;
  right: 0;
  top: 50%;
  margin-left: 0;
  transform: translateY(-50%);
}

body.booking-requests-page.dashboard-page .notification-btn:hover,
body.booking-requests-page.dashboard-page .notification-btn:active {
  transform: translateY(-50%);
}

body.booking-requests-page.dashboard-page .dashboard-spotlight {
  min-height: 0;
  padding: 18px 16px;
}

body.booking-requests-page.dashboard-page .dashboard-spotlight h2 {
  max-width: 260px;
}

body.booking-requests-page.dashboard-page .dashboard-panel-intro {
  margin-top: 2px;
}

body.booking-requests-page.dashboard-page .filter-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 16px 0 14px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #e5e7eb;
}

body.booking-requests-page.dashboard-page .filter-tabs .tab {
  appearance: none;
  -webkit-appearance: none;
  min-width: 0;
  width: 100%;
  min-height: 38px;
  padding: 0 4px;
  border: 1px solid #d6d9df;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  box-shadow: none;
  white-space: nowrap;
}

body.booking-requests-page.dashboard-page .filter-tabs .tab:hover {
  border-color: rgba(126, 87, 194, 0.34);
  background: #faf7ff;
  color: #5f3ea4;
}

body.booking-requests-page.dashboard-page .filter-tabs .tab.active {
  border-color: #7e57c2;
  background: #7e57c2;
  color: #ffffff;
  box-shadow: none;
}

body.booking-requests-page.dashboard-page .filter-tabs .tab:focus {
  outline: none;
}

body.booking-requests-page.dashboard-page .filter-tabs .tab:focus-visible {
  box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.18);
}

body.booking-requests-page.dashboard-page .booking-results-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px 12px;
}

body.booking-requests-page.dashboard-page .booking-results-count {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

body.booking-requests-page.dashboard-page .booking-results-hint {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
  max-width: 136px;
}

body.booking-requests-page.dashboard-page #bookingsContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  overflow-anchor: none;
}

body.booking-requests-page.dashboard-page .booking-card {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--dashboard-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--dashboard-shadow);
  overflow: hidden;
}

body.booking-requests-page.dashboard-page .booking-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--dashboard-shadow-hover);
}

body.booking-requests-page.dashboard-page .booking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

body.booking-requests-page.dashboard-page .booking-title-group {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.booking-requests-page.dashboard-page .booking-code {
  margin: 0;
  color: var(--dashboard-purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.booking-requests-page.dashboard-page .booking-header h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  color: #111827;
}

body.booking-requests-page.dashboard-page .booking-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

body.booking-requests-page.dashboard-page .booking-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

body.booking-requests-page.dashboard-page .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
}

body.booking-requests-page.dashboard-page .meta-pill i {
  color: var(--dashboard-purple);
  font-size: 13px;
}

body.booking-requests-page.dashboard-page .booking-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.booking-requests-page.dashboard-page .info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

body.booking-requests-page.dashboard-page .info-row i {
  width: 16px;
  margin-top: 2px;
  color: var(--dashboard-purple);
  flex-shrink: 0;
}

body.booking-requests-page.dashboard-page .info-highlight {
  padding: 10px 12px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #eff6ff;
  color: #1d4ed8;
}

body.booking-requests-page.dashboard-page .status {
  margin-bottom: 0;
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

body.booking-requests-page.dashboard-page .status.pending,
body.booking-requests-page.dashboard-page .status.assigned,
body.booking-requests-page.dashboard-page .status.on-way,
body.booking-requests-page.dashboard-page .status.arrived,
body.booking-requests-page.dashboard-page .status.in-progress {
  background: #fff4db;
  color: #b7791f;
}

body.booking-requests-page.dashboard-page .status.accepted,
body.booking-requests-page.dashboard-page .status.completed {
  background: #e8f5ea;
  color: #1f7a3d;
}

body.booking-requests-page.dashboard-page .status.cancelled {
  background: #fee2e2;
  color: #b91c1c;
}

body.booking-requests-page.dashboard-page .status.refunded {
  background: #e0f2fe;
  color: #0369a1;
}

body.booking-requests-page.dashboard-page .action-buttons {
  margin: 16px 0 0;
  gap: 10px;
}

body.booking-requests-page.dashboard-page .action-buttons button {
  flex: 1 1 0;
  min-height: 38px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: none;
}

body.booking-requests-page.dashboard-page .accept {
  border: 1px solid #c8c8c8;
  background: #ffffff;
  color: #4b5563;
}

body.booking-requests-page.dashboard-page .accept:hover {
  background: #ffffff;
  color: #4b5563;
}

body.booking-requests-page.dashboard-page .reject {
  border: 0;
  background: #7e57c2;
  color: #ffffff;
  font-weight: 600;
}

body.booking-requests-page.dashboard-page .reject:hover {
  background: #7e57c2;
  color: #ffffff;
}

body.booking-requests-page.dashboard-page .action-buttons button,
body.booking-requests-page.dashboard-page .action-buttons button:hover {
  transform: none;
}

body.booking-requests-page.dashboard-page .booking-card hr {
  margin: 16px 0 0;
  border: 0;
  border-top: 1px solid #edf2f7;
}

body.booking-requests-page.dashboard-page .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 0;
  margin-top: 2px;
  color: #111827;
  font-weight: 600;
}

body.booking-requests-page.dashboard-page .list-item:hover {
  padding: 14px 0 0;
  background: transparent;
  color: var(--dashboard-purple);
}

body.booking-requests-page.dashboard-page .list-item:hover i {
  transform: translateX(2px);
}

body.booking-requests-page.dashboard-page .no-bookings,
body.booking-requests-page.dashboard-page .loading-spinner {
  margin: 0;
  padding: 48px 20px;
  border: 1px dashed #d4dbe7;
  border-radius: 20px;
  background: #ffffff;
}

body.booking-requests-page.dashboard-page .loading-spinner {
  color: #6b7280;
}

@media (max-width: 360px) {
  body.booking-requests-page.dashboard-page .booking-header {
    flex-direction: column;
  }

  body.booking-requests-page.dashboard-page .status {
    align-self: flex-start;
  }

  body.booking-requests-page.dashboard-page .booking-results-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  body.booking-requests-page.dashboard-page .booking-results-hint {
    text-align: left;
  }
}

body.schedule-management-page p {
  font-size: 12px;
}

body.schedule-management-page #scheduleHeaderSubtitle {
  font-size: 11px;
  line-height: 1.35;
}

body.dashboard-page .stats-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

body.dashboard-page .stat-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #dddddd;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(20, 28, 40, 0.06);
  text-align: left;
}

body.dashboard-page .stat-card:hover {
  transform: none;
  box-shadow: 0 4px 10px rgba(20, 28, 40, 0.06);
}

body.dashboard-page .stat-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

body.dashboard-page .stat-icon {
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 14px;
  font-size: 22px;
}

body.dashboard-page .stat-icon.bookings {
  background: #eef3ff;
  color: #4e67d8;
}

body.dashboard-page .stat-icon.earnings {
  background: #f2ebff;
  color: #7e57c2;
}

body.dashboard-page .stat-icon.pending {
  background: #fff1e6;
  color: #d97706;
}

body.dashboard-page .stat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #555555;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.dashboard-page .stat-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.dashboard-page .stat-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #5f5f5f;
  letter-spacing: 0;
  text-transform: none;
}

body.dashboard-page .stat-value {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #111111;
}

body.dashboard-page .stat-copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #7a7a7a;
}

body.dashboard-page:not(.dashboard-ui-ready) .header-info p,
body.dashboard-page:not(.dashboard-ui-ready) #todayBookings,
body.dashboard-page:not(.dashboard-ui-ready) #earningsSummary,
body.dashboard-page:not(.dashboard-ui-ready) #pendingRequests,
body.dashboard-page:not(.dashboard-ui-ready) #overviewCount,
body.dashboard-page:not(.dashboard-ui-ready) #earningsAmount,
body.dashboard-page:not(.dashboard-ui-ready) #earningsChart,
body.dashboard-page:not(.dashboard-ui-ready) #earningsChartStatus {
  visibility: hidden;
}

body.dashboard-page .chart-status {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #7a7a7a;
}

body.dashboard-page .earnings-chart.is-loading {
  pointer-events: none;
}

body.dashboard-page .earnings-chart.is-loading .month-bar {
  min-height: 0;
  height: 0 !important;
}

body.dashboard-page {
  --dashboard-ink: #102a43;
  --dashboard-soft: #66788a;
  --dashboard-line: #dbe2ea;
  --dashboard-surface: #ffffff;
  --dashboard-mist: #eef4fb;
  --dashboard-blue: #1d4ed8;
  --dashboard-sky: #2c7da0;
  --dashboard-warm: #f4a261;
  --dashboard-amber: #d97706;
  background: linear-gradient(180deg, #d7d7d7 0%, #d0d0d0 100%);
}

body.dashboard-page .container {
  position: relative;
  overflow: hidden;
  padding: 18px 14px 110px;
  background: linear-gradient(180deg, #f5f7fa 0%, #f6f7f3 48%, #eef4ff 100%);
}

body.dashboard-page .container::before,
body.dashboard-page .container::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

body.dashboard-page .container::before {
  top: -76px;
  left: -70px;
  width: 190px;
  height: 190px;
  background: rgba(244, 162, 97, 0.12);
}

body.dashboard-page .container::after {
  top: 126px;
  right: -88px;
  width: 220px;
  height: 220px;
  background: rgba(44, 125, 160, 0.08);
}

body.dashboard-page .main-content {
  position: relative;
  z-index: 1;
  gap: 18px;
}

body.dashboard-page .header.dashboard-hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  min-height: auto;
  margin: 0;
  border-bottom: 0;
}

body.dashboard-page .dashboard-hero-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  min-height: 64px;
}

body.dashboard-page .dashboard-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  width: 100%;
}

body.dashboard-page .dashboard-logo {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(145deg, #18344d 0%, #28506a 58%, #356b86 100%);
  box-shadow:
    0 10px 18px rgba(22, 50, 79, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

body.dashboard-page .dashboard-logo svg {
  width: 24px;
  height: 24px;
}

body.dashboard-page .header-info {
  text-align: left;
}

body.dashboard-page .dashboard-kicker {
  display: inline-flex;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #40627c;
  justify-content: flex-start;
}

body.dashboard-page .header h3 {
  font-size: 28px;
  line-height: 1;
  color: var(--dashboard-ink);
}

body.dashboard-page .header p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dashboard-soft);
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

body.dashboard-page .notification-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dashboard-ink);
  box-shadow: 0 10px 20px rgba(16, 42, 67, 0.08);
}

body.dashboard-page .notification-btn:hover,
body.dashboard-page .notification-btn:active {
  transform: translateY(-50%);
  border-color: rgba(16, 42, 67, 0.14);
  background: #ffffff;
  color: var(--dashboard-ink);
  box-shadow: 0 12px 24px rgba(16, 42, 67, 0.1);
}

body.dashboard-page .notification-btn svg,
body.dashboard-page .notification-btn i {
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
}

body.dashboard-page .dashboard-spotlight {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #16324f 0%, #28536b 52%, #2c7da0 100%);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(22, 50, 79, 0.18);
  text-align: center;
}

body.dashboard-page .dashboard-spotlight::after {
  content: "";
  position: absolute;
  inset: auto -36px -56px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

body.dashboard-page .dashboard-spotlight-copy,
body.dashboard-page .dashboard-spotlight-btn {
  position: relative;
  z-index: 1;
}

body.dashboard-page .dashboard-spotlight-chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.dashboard-page .dashboard-spotlight h2 {
  margin: 12px 0 0;
  max-width: none;
  font-size: 22px;
  line-height: 1.1;
  color: #ffffff;
}

body.dashboard-page .dashboard-spotlight p {
  margin: 10px 0 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

body.dashboard-page .dashboard-spotlight-btn {
  align-self: center;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  color: #16324f;
  padding: 11px 18px;
  font: 700 13px/1 var(--font-family-base);
  box-shadow: 0 10px 22px rgba(8, 15, 35, 0.18);
}

body.dashboard-page .dashboard-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

body.dashboard-page .dashboard-action-card,
body.dashboard-page .stat-card,
body.dashboard-page .overview-card,
body.dashboard-page .dashboard-spotlight-btn,
body.dashboard-page .earnings-link {
  font-family: inherit;
}

body.dashboard-page .dashboard-action-card,
body.dashboard-page .stat-card,
body.dashboard-page .overview-card {
  appearance: none;
  width: 100%;
  cursor: pointer;
}

body.dashboard-page .dashboard-action-card {
  min-height: 118px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 18px rgba(24, 39, 75, 0.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

body.dashboard-page .dashboard-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.dashboard-page .dashboard-action-icon svg {
  width: 22px;
  height: 22px;
}

body.dashboard-page .action-bookings {
  background: #eaf2ff;
  color: #2563eb;
}

body.dashboard-page .action-progress {
  background: #e9f7f4;
  color: #15803d;
}

body.dashboard-page .action-wallet {
  background: #fff2e6;
  color: #d97706;
}

body.dashboard-page .dashboard-action-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dashboard-ink);
}

body.dashboard-page .dashboard-action-copy {
  font-size: 11px;
  line-height: 1.45;
  color: var(--dashboard-soft);
  max-width: 96px;
  margin: 0 auto;
}

body.dashboard-page .dashboard-panel-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 2px 0;
  text-align: center;
}

body.dashboard-page .dashboard-panel-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4d6d87;
}

body.dashboard-page .dashboard-panel-copy {
  max-width: 240px;
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: var(--dashboard-soft);
}

body.dashboard-page .section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dashboard-ink);
}

body.dashboard-page .stats-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  --dashboard-summary-gap: 14px;
  gap: var(--dashboard-summary-gap);
  align-items: stretch;
  justify-items: stretch;
  margin: 0;
  padding: 0 8px 0 2px;
}

body.dashboard-page .earnings-card-summary {
  grid-column: 1;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 152px;
}

body.dashboard-page .stat-card {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 152px;
  padding: 18px 16px 20px;
  border: 1px solid rgba(219, 226, 234, 0.9);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 10px 20px rgba(16, 42, 67, 0.055);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

body.dashboard-page .stat-card:hover,
body.dashboard-page .overview-card:hover,
body.dashboard-page .dashboard-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(16, 42, 67, 0.08);
}

body.dashboard-page .stat-card-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  width: 100%;
  max-width: 290px;
}

body.dashboard-page .stat-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

body.dashboard-page .stat-icon svg {
  width: 19px;
  height: 19px;
}

body.dashboard-page .stat-icon.bookings {
  background: linear-gradient(135deg, #eef5ff 0%, #dbeafe 100%);
  color: #2563eb;
}

body.dashboard-page .stat-icon.pending {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #d97706;
}

body.dashboard-page .stat-icon.earnings {
  background: linear-gradient(135deg, #e8f7f0 0%, #d1fae5 100%);
  color: #15803d;
}

body.dashboard-page .stat-chip {
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f5f7;
  color: #556575;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.dashboard-page .stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  max-width: 290px;
  text-align: center;
}

body.dashboard-page .stat-label {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #5a6c7d;
}

body.dashboard-page .stat-value {
  margin: 0;
  font-size: 38px;
  line-height: 1;
  color: var(--dashboard-ink);
}

body.dashboard-page .stat-copy {
  max-width: 290px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--dashboard-soft);
  width: 100%;
}

body.dashboard-page .overview-section {
  display: grid;
  gap: 12px;
  margin: 0;
}

body.dashboard-page .overview-card {
  margin: 0;
  display: block;
  padding: 16px;
  border: 1px solid rgba(219, 226, 234, 0.9);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fd 100%);
  box-shadow: 0 10px 20px rgba(16, 42, 67, 0.055);
  text-align: center;
}

body.dashboard-page .overview-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

body.dashboard-page .overview-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: var(--dashboard-amber);
}

body.dashboard-page .overview-icon svg,
body.dashboard-page .overview-action svg {
  width: 18px;
  height: 18px;
}

body.dashboard-page .overview-details h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--dashboard-ink);
}

body.dashboard-page .overview-count {
  color: #38607f;
  font-size: 13px;
}

body.dashboard-page .overview-action {
  width: 34px;
  height: 34px;
  margin: 12px auto 0;
  border-radius: 11px;
  background: #ffffff;
  color: #4b647a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(16, 42, 67, 0.07);
}

body.dashboard-page .earnings-overview {
  padding: 14px 14px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(219, 226, 234, 0.92);
  box-shadow: 0 10px 20px rgba(16, 42, 67, 0.055);
  text-align: center;
}

body.dashboard-page .earnings-overview-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

body.dashboard-page .earnings-overview-head > div {
  text-align: center;
}

body.dashboard-page .earnings-overview h3 {
  margin: 0;
  font-size: 16px;
  color: var(--dashboard-ink);
}

body.dashboard-page .earnings-link {
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--dashboard-blue);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 700;
}

body.dashboard-page .earnings-amount {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1;
  color: var(--dashboard-ink);
}

body.dashboard-page .earnings-chart {
  height: 96px;
  gap: 8px;
  padding: 14px 10px 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  border: 1px solid rgba(191, 219, 254, 0.7);
}

body.dashboard-page .month-bar {
  border-radius: 999px 999px 12px 12px;
  min-height: 10px;
  background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body.dashboard-page .month-bar::after {
  bottom: -22px;
  font-size: 10px;
  font-weight: 700;
  color: #627385;
}

body.dashboard-page .month-bar.active {
  min-height: 48px;
  background: linear-gradient(180deg, #2c7da0 0%, #f4a261 100%);
  box-shadow: 0 10px 16px rgba(44, 125, 160, 0.18);
}

body.dashboard-page .month-bar:hover {
  background: linear-gradient(180deg, #bfc9d8 0%, #8a9bb2 100%);
}

body.dashboard-page .month-bar.active:hover {
  background: linear-gradient(180deg, #246887 0%, #eb9350 100%);
}

body.dashboard-page .chart-status {
  margin: 10px 0 0;
  text-align: center;
  font-size: 11px;
  color: var(--dashboard-soft);
}

body.dashboard-page .earnings-amount.is-loading-copy {
  font-size: 20px;
  line-height: 1.2;
}

body.dashboard-page .chart-status.is-loading-copy {
  font-size: 10px;
}

body.dashboard-page .bottom-nav {
  left: 50%;
  right: auto;
  width: min(100%, var(--service-mobile-width));
  height: 80px;
  padding: 6px 6px 0;
  transform: translateX(-50%);
  border-top: 1px solid #dce4eb;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 24px rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(10px);
}

body.dashboard-page .bottom-nav a {
  min-height: 66px;
  padding: 8px 4px 10px;
  gap: 6px;
  color: #6a7785;
}

body.dashboard-page .bottom-nav a::before {
  top: 4px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
}

body.dashboard-page .bottom-nav a.active::before {
  width: 24px;
  height: 4px;
  background: var(--dashboard-blue);
}

body.dashboard-page .bottom-nav .nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: all 0.2s ease;
}

body.dashboard-page .bottom-nav .nav-icon svg {
  width: 20px;
  height: 20px;
}

body.dashboard-page .bottom-nav a span:last-child {
  font-size: 11px;
  line-height: 1;
}

body.dashboard-page .bottom-nav a.active {
  color: var(--dashboard-ink);
}

body.dashboard-page .bottom-nav a.active .nav-icon {
  background: #edf4ff;
  color: var(--dashboard-blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.dashboard-page .bottom-nav a.active span:last-child {
  color: var(--dashboard-blue);
}

body.dashboard-page .notification-popup {
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border: 1px solid rgba(219, 226, 234, 0.95);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.16);
}

body.dashboard-page .popup-header {
  padding: 18px 18px 14px;
}

body.dashboard-page .popup-header h1 {
  color: var(--dashboard-ink);
}

body.dashboard-page .close-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: 12px;
  background: #ffffff;
  color: #45627a;
}

body.dashboard-page .notification-item {
  border-color: rgba(219, 226, 234, 0.9);
}

body.dashboard-page .dashboard-action-card:focus-visible,
body.dashboard-page .stat-card:focus-visible,
body.dashboard-page .overview-card:focus-visible,
body.dashboard-page .dashboard-spotlight-btn:focus-visible,
body.dashboard-page .earnings-link:focus-visible,
body.dashboard-page .notification-btn:focus-visible {
  outline: 2px solid var(--dashboard-blue);
  outline-offset: 2px;
}

@media (max-width: 360px) {
  body.dashboard-page .header h3 {
    font-size: 24px;
  }

  body.dashboard-page .dashboard-spotlight h2 {
    font-size: 21px;
  }

  body.dashboard-page .dashboard-action-card {
    min-height: 122px;
    padding: 10px 8px;
  }

  body.dashboard-page .dashboard-action-title {
    font-size: 12px;
  }

  body.dashboard-page .dashboard-action-copy {
    font-size: 10px;
  }

  body.dashboard-page .dashboard-panel-copy {
    max-width: 128px;
    font-size: 11px;
  }
}

/* ========================================
   USER-STYLE DASHBOARD + PROFILE OVERRIDES
   ======================================== */

body.dashboard-page {
  --dashboard-ink: #111111;
  --dashboard-soft: #717171;
  --dashboard-line: #e5e8ee;
  --dashboard-shadow: 0 4px 10px rgba(20, 28, 40, 0.06);
  --dashboard-shadow-hover: 0 8px 18px rgba(20, 28, 40, 0.09);
  --dashboard-purple: #7e57c2;
  --dashboard-blue: #4e67d8;
  --dashboard-green: #2b8b62;
  --dashboard-amber: #d97706;
  background: var(--app-bg);
}

body.dashboard-page .container {
  padding: 20px 14px 110px;
  background: var(--page-bg);
}

body.dashboard-page .container::before,
body.dashboard-page .container::after {
  display: none;
}

body.dashboard-page .main-content {
  gap: 16px;
}

body.dashboard-page .header.dashboard-hero {
  margin: 0;
  min-height: auto;
  gap: 0;
  align-items: stretch;
  width: 100%;
  padding: 14px 0 18px;
  border-bottom: 1px solid #e5e7eb;
}

body.dashboard-page .dashboard-hero-top {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-height: 58px;
  padding-top: 0;
  padding-right: 0;
}

body.dashboard-page .dashboard-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}

body.dashboard-page .dashboard-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(126, 87, 194, 0.18);
  background: linear-gradient(145deg, #7e57c2 0%, #6a58bf 48%, #4e67d8 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(78, 103, 216, 0.18);
}

body.dashboard-page .dashboard-logo svg {
  width: 30px;
  height: 30px;
}

body.dashboard-page .header.dashboard-hero .header-info {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

body.dashboard-page .dashboard-kicker {
  display: block;
  margin: 0 0 4px;
  color: var(--dashboard-purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.dashboard-page .header.dashboard-hero h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: var(--dashboard-ink);
}

body.dashboard-page .header.dashboard-hero p {
  margin: 6px 0 0;
  max-width: none;
  color: var(--dashboard-soft);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

body.dashboard-page .notification-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-left: 0;
  flex-shrink: 0;
  align-self: auto;
  width: 52px;
  height: 52px;
  border: 1.5px solid #9a9a9a;
  border-radius: 50%;
  background: #ffffff;
  color: #3a3a3a;
  box-shadow: none;
  z-index: 2;
}

body.dashboard-page .notification-btn:hover,
body.dashboard-page .notification-btn:active {
  transform: translateY(-50%);
  background: #ffffff;
  border-color: #9a9a9a;
  color: #3a3a3a;
  box-shadow: none;
}

body.dashboard-page .notification-btn svg {
  width: 30px;
  height: 30px;
}

body.dashboard-page .dashboard-spotlight {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border: 1px solid #d5dce6;
  border-radius: 16px;
  background: linear-gradient(135deg, #3f345d 0%, #6d55a3 58%, #8b79c7 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(63, 52, 93, 0.18);
  text-align: left;
}

body.dashboard-page .dashboard-spotlight::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

body.dashboard-page .dashboard-spotlight-copy,
body.dashboard-page .dashboard-spotlight-btn {
  position: relative;
  z-index: 1;
}

body.dashboard-page .dashboard-spotlight-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.dashboard-page .dashboard-spotlight h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  color: #ffffff;
}

body.dashboard-page .dashboard-spotlight p {
  margin: 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

body.dashboard-page .dashboard-spotlight-btn {
  align-self: flex-start;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  color: #1d3557;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

body.dashboard-page .dashboard-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.dashboard-page .dashboard-action-card {
  min-height: 126px;
  padding: 10px 8px 12px;
  border: 1px solid var(--dashboard-line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--dashboard-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  text-align: center;
}

body.dashboard-page .dashboard-action-card:hover,
body.dashboard-page .stat-card:hover,
body.dashboard-page .overview-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--dashboard-shadow-hover);
}

body.dashboard-page .dashboard-action-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 2px;
}

body.dashboard-page .dashboard-action-icon svg {
  width: 24px;
  height: 24px;
}

body.dashboard-page .action-bookings {
  background: #eef3ff;
  color: var(--dashboard-blue);
}

body.dashboard-page .action-progress {
  background: #e8f5ea;
  color: var(--dashboard-green);
}

body.dashboard-page .action-wallet {
  background: #fff1e6;
  color: var(--dashboard-amber);
}

body.dashboard-page .dashboard-action-title {
  color: var(--dashboard-ink);
  font-size: 12px;
  font-weight: 700;
}

body.dashboard-page .dashboard-action-copy {
  margin: 0;
  max-width: 92px;
  color: var(--dashboard-soft);
  font-size: 11px;
  line-height: 1.35;
}

body.dashboard-page .dashboard-panel-intro {
  align-items: flex-start;
  gap: 4px;
  padding: 0;
  text-align: left;
}

body.dashboard-page .dashboard-panel-kicker {
  margin: 0 0 2px;
  color: var(--dashboard-purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.dashboard-page .section-title {
  font-size: 20px;
  color: var(--dashboard-ink);
}

body.dashboard-page .dashboard-panel-copy {
  max-width: none;
  color: var(--dashboard-soft);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

body.dashboard-page .dashboard-debug-panel {
  margin: 0 0 12px;
  padding: 14px;
  border: 1px solid #ffd7aa;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff8ef 0%, #fffdf8 100%);
  box-shadow: 0 10px 22px rgba(111, 79, 23, 0.08);
}

body.dashboard-page .dashboard-debug-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  color: #6e4a11;
  font-size: 13px;
}

body.dashboard-page .dashboard-debug-head strong {
  font-size: 14px;
}

body.dashboard-page .dashboard-debug-message {
  margin: 0;
  color: #8a6222;
  font-size: 12px;
  line-height: 1.5;
}

body.dashboard-page .dashboard-debug-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

body.dashboard-page .dashboard-debug-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(224, 181, 104, 0.35);
  font-size: 12px;
  color: #6e4a11;
}

body.dashboard-page .dashboard-debug-item strong {
  font-size: 11px;
  color: #2c4f25;
}

body.dashboard-page .stats-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  justify-items: stretch;
  gap: 12px;
  margin: 0;
  padding: 0;
}

body.dashboard-page .stat-card {
  min-height: auto;
  padding: 16px;
  border: 1px solid var(--dashboard-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--dashboard-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

body.dashboard-page .stat-card-head {
  width: 100%;
  max-width: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.dashboard-page .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  box-shadow: none;
}

body.dashboard-page .stat-icon svg {
  width: 20px;
  height: 20px;
}

body.dashboard-page .stat-icon.bookings {
  background: #eef3ff;
  color: var(--dashboard-blue);
}

body.dashboard-page .stat-icon.pending {
  background: #fff1e6;
  color: var(--dashboard-amber);
}

body.dashboard-page .stat-icon.earnings {
  background: #e8f5ea;
  color: var(--dashboard-green);
}

body.dashboard-page .stat-chip {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #555555;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.dashboard-page .stat-content {
  width: 100%;
  max-width: none;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}

body.dashboard-page .stat-label {
  margin: 0;
  color: #5f5f5f;
  font-size: 13px;
  font-weight: 600;
}

body.dashboard-page .stat-value {
  margin: 0;
  color: var(--dashboard-ink);
  font-size: 32px;
  line-height: 1;
  opacity: 1;
  visibility: visible;
}

body.dashboard-page .stat-value.is-loading-copy {
  font-size: 20px;
  line-height: 1.2;
}

body.dashboard-page .stat-copy {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.45;
}

body.dashboard-page .dashboard-schedule-panel {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
}

body.dashboard-page .dashboard-schedule-card {
  width: 100%;
  margin-top: 0;
  background: #ffffff;
  padding: 16px;
  border: 1px solid var(--dashboard-line);
  border-radius: 16px;
  box-shadow: var(--dashboard-shadow);
}

body.dashboard-page .dashboard-schedule-icon {
  background: #eef7ff;
  color: #2a6fd6;
}

body.dashboard-page .dashboard-schedule-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

body.dashboard-page .dashboard-schedule-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #5a6472;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 1;
  visibility: visible;
}

body.dashboard-page .dashboard-schedule-badge.is-loading-copy {
  font-size: 10px;
}

body.dashboard-page .dashboard-schedule-line {
  margin: 0;
  color: #5d6775;
  font-size: 12px;
  line-height: 1.5;
  min-height: 18px;
}

body.dashboard-page .dashboard-schedule-note {
  margin: 8px 0 0;
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.45;
}

body.dashboard-page .dashboard-schedule-line.is-loading-copy {
  font-size: 11px;
}

body.dashboard-page .dashboard-schedule-line {
  margin-top: 6px;
}

body.dashboard-page .dashboard-schedule-line + .dashboard-schedule-line {
  margin-top: 6px;
}

body.dashboard-page .dashboard-schedule-line-strong {
  color: var(--dashboard-ink);
  font-weight: 600;
}

body.dashboard-page .dashboard-schedule-actions {
  width: 100%;
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

body.dashboard-page .dashboard-inline-action {
  border: 1px solid var(--dashboard-line);
  border-radius: 12px;
  background: #f9fbff;
  color: var(--dashboard-ink);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.dashboard-page .dashboard-inline-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(14, 30, 62, 0.08);
}

body.dashboard-page .dashboard-inline-action-primary {
  border: 0;
  background: var(--dashboard-purple);
  color: #ffffff;
  box-shadow: none;
}

body.dashboard-page .dashboard-inline-action-primary:hover {
  background: #6f4db1;
}

body.dashboard-page .overview-section {
  display: grid;
  gap: 12px;
  margin: 0;
}

body.dashboard-page .overview-card {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--dashboard-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--dashboard-shadow);
  text-align: left;
}

body.dashboard-page .overview-content {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

body.dashboard-page .overview-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body.dashboard-page .overview-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff1e6;
  color: var(--dashboard-amber);
}

body.dashboard-page .overview-icon.request-queue-icon {
  background: #eef3ff;
  color: var(--dashboard-blue);
  box-shadow: inset 0 0 0 1px rgba(78, 103, 216, 0.08);
}

body.dashboard-page .overview-icon svg,
body.dashboard-page .overview-action svg {
  width: 18px;
  height: 18px;
}

body.dashboard-page .overview-details h3 {
  margin: 0;
  color: var(--dashboard-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

body.dashboard-page .overview-count {
  margin: 0;
  color: #44576d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}

body.dashboard-page .overview-action {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #666666;
  box-shadow: none;
}

body.dashboard-page .earnings-overview {
  padding: 16px;
  border: 1px solid var(--dashboard-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--dashboard-shadow);
  text-align: left;
}

body.dashboard-page .earnings-overview-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

body.dashboard-page .earnings-overview-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.dashboard-page .earnings-overview-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

body.dashboard-page .earnings-overview h3 {
  margin: 0;
  color: var(--dashboard-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

body.dashboard-page .earnings-overview-icon {
  flex: 0 0 auto;
}

body.dashboard-page .earnings-amount {
  margin: 4px 0 10px;
  color: var(--dashboard-ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  opacity: 1;
  visibility: visible;
}

body.dashboard-page .earnings-overview-note {
  margin: 0 0 14px;
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.45;
}

body.dashboard-page .earnings-chart {
  height: 100px;
  gap: 8px;
  padding: 16px 10px 26px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e9edf3;
}

body.dashboard-page .month-bar {
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
  box-shadow: none;
}

body.dashboard-page .month-bar::after {
  bottom: -22px;
  color: #627385;
  font-size: 10px;
  font-weight: 700;
}

body.dashboard-page .month-bar.active {
  min-height: 48px;
  background: linear-gradient(180deg, #7e57c2 0%, #4e67d8 100%);
  box-shadow: 0 8px 14px rgba(78, 103, 216, 0.18);
}

body.dashboard-page .month-bar:hover {
  background: linear-gradient(180deg, #bac6d5 0%, #8b9bb0 100%);
}

body.dashboard-page .month-bar.active:hover {
  background: linear-gradient(180deg, #6f4db1 0%, #425ad1 100%);
}

body.dashboard-page .month-bar.placeholder {
  background: linear-gradient(180deg, #dbe4ef 0%, #b8c6d8 100%);
  opacity: 0.95;
}

body.dashboard-page .chart-status {
  margin: 10px 0 0;
  color: var(--dashboard-soft);
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

body.dashboard-page .earnings-overview-actions {
  margin-top: 14px;
}

body.dashboard-page .bottom-nav {
  left: 50%;
  right: auto;
  width: min(100%, var(--service-mobile-width));
  height: 78px;
  padding: 0;
  transform: translateX(-50%);
  border-top: 1px solid #d4d4d4;
  background: #ffffff;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.dashboard-page .bottom-nav a {
  position: relative;
  min-height: 78px;
  padding: 8px 6px 10px;
  gap: 4px;
  color: #1a1a1a;
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body.dashboard-page .bottom-nav a::before {
  display: none;
}

body.dashboard-page .bottom-nav .nav-icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

body.dashboard-page .bottom-nav .nav-icon svg {
  width: 100%;
  height: 100%;
  shape-rendering: geometricPrecision;
}

body.dashboard-page .bottom-nav a span:last-child {
  color: inherit;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.01em;
}

body.dashboard-page .bottom-nav a.active {
  color: #000000;
  font-weight: 700;
}

body.dashboard-page .bottom-nav a.active .nav-icon {
  background: transparent;
  box-shadow: none;
}

body.dashboard-page .notification-popup {
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

body.dashboard-page .popup-header {
  padding: 18px 18px 14px;
}

body.dashboard-page .close-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  background: #ffffff;
  color: #555555;
}

body.dashboard-page .dashboard-action-card:focus-visible,
body.dashboard-page .stat-card:focus-visible,
body.dashboard-page .overview-card:focus-visible,
body.dashboard-page .dashboard-spotlight-btn:focus-visible,
body.dashboard-page .earnings-link:focus-visible,
body.dashboard-page .notification-btn:focus-visible {
  outline: 2px solid var(--dashboard-purple);
  outline-offset: 2px;
}

body.profile-page {
  background: var(--app-bg);
}

body.profile-page .container {
  padding: 0 14px 110px;
  background: var(--page-bg);
}

body.profile-page .main-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.profile-page .header {
  margin: 0 0 16px;
  min-height: 82px;
  border-bottom: 1px solid #d8d8d8;
}

body.profile-page .header .back-btn,
body.profile-page .header .notification-btn {
  top: 50%;
  transform: translateY(-50%);
}

body.profile-page .header .notification-btn {
  width: 40px;
  height: 40px;
}

body.profile-page .header .notification-btn:hover,
body.profile-page .header .notification-btn:active,
body.profile-page .header .back-btn:hover,
body.profile-page .header .back-btn:active {
  transform: translateY(-50%);
}

body.profile-page .header-info p {
  font-size: 13px;
}

body.profile-page .profile-header {
  margin: 0;
  padding: 14px;
  border: 0;
  border-radius: 16px;
  background: #c7c8da;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: none;
}

body.profile-page .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ece7f8;
  color: var(--service-accent);
  flex-shrink: 0;
  box-shadow: none;
}

body.profile-page .profile-name {
  flex: 1;
  min-width: 0;
}

body.profile-page .profile-name h1 {
  margin: 0;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
}

body.profile-page #profilePhone {
  margin: 2px 0 0;
  color: #4b4b4b;
  font-size: 14px;
}

body.profile-page .profile-inline-action {
  min-width: 136px;
  min-height: 36px;
  margin-top: 10px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--service-accent);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

body.profile-page .profile-inline-action:hover {
  background: #6f4db1;
  transform: none;
}

body.profile-page .menu-list {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.profile-page .menu-item {
  min-height: 56px;
  margin: 0 0 12px;
  padding: 0 14px;
  border: 1px solid #b9b9b9;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
}

body.profile-page .menu-item:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #b9b9b9;
}

body.profile-page .menu-item:hover {
  background: #ffffff;
  transform: none;
  box-shadow: none;
}

body.profile-page .mi-left {
  gap: 12px;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 500;
}

body.profile-page .mi-left i {
  width: 20px;
  color: #666666;
  font-size: 16px;
}

body.profile-page .menu-item i.fa-chevron-right {
  color: #333333;
  font-size: 14px;
}

body.profile-page .extra-links {
  padding: 0;
  gap: 12px;
}

body.profile-page .text-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #b9b9b9;
  border-radius: 16px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

body.profile-page .text-link:hover {
  background: #ffffff;
  color: #1f1f1f;
}

body.profile-page .extra-links .profile-action-btn {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid #b5b5b5;
  border-radius: 999px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
}

body.profile-page .extra-links .profile-action-btn-danger {
  border-color: rgba(205, 50, 50, 0.22);
  background: #fff5f5;
  color: #cd3232;
}

body.profile-page .popup {
  width: min(100%, 360px);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: var(--page-bg);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

body.profile-page .popup-header {
  padding: 18px 18px 14px;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

body.profile-page .popup-body {
  padding: 18px;
}

body.profile-page .tabs {
  gap: 8px;
  padding: 0 16px 12px;
  background: #ffffff;
  border-bottom: 0;
}

body.profile-page .tab {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #d5dce6;
  border-radius: 999px;
  background: #ffffff;
  color: #444444;
  font-size: 13px;
}

body.profile-page .tab.active {
  border-color: var(--service-accent);
  background: rgba(126, 87, 194, 0.08);
  color: var(--service-accent);
  font-weight: 700;
}

body.profile-page .list {
  padding: 16px;
}

body.profile-page .job-card {
  padding: 14px;
  border: 1px solid #e5e8ee;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(20, 28, 40, 0.06);
}

body.profile-page .job-title {
  color: #111111;
  font-size: 15px;
}

body.profile-page .job-sub {
  color: #666666;
  font-size: 13px;
}

body.profile-page .amount {
  color: #111111;
  font-size: 18px;
}

body.profile-page .avatar-wrap {
  margin-bottom: 18px;
}

body.profile-page .avatar-wrap .avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
}

body.profile-page .pill-btn {
  border: 0;
  border-radius: 999px;
  background: var(--service-accent);
  color: #ffffff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
}

body.profile-page .pill-btn:hover {
  background: #6f4db1;
}

body.profile-page .form-card {
  padding: 16px;
  border: 1px solid #e5e8ee;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(20, 28, 40, 0.06);
}

body.profile-page .field {
  margin-bottom: 14px;
}

body.profile-page .field label {
  margin-bottom: 6px;
  color: #444444;
  font-size: 13px;
  font-weight: 700;
}

body.profile-page .fake-input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1.5px solid #c9c9c9;
  border-radius: 16px;
  background: #eeeeee;
  color: #2e2e2e;
  font-size: 14px;
}

body.profile-page textarea.fake-input {
  min-height: 104px;
  padding: 14px 16px;
  resize: vertical;
}

body.profile-page .save-btn {
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  border: 1px solid #6f4db1;
  border-radius: 18px;
  background: var(--service-accent);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

body.profile-page .save-btn:hover {
  background: #6f4db1;
}

@media (max-width: 360px) {
  body.dashboard-page .header h3 {
    font-size: 20px;
  }

  body.dashboard-page .dashboard-spotlight h2 {
    font-size: 21px;
  }

  body.dashboard-page .dashboard-action-card {
    min-height: 120px;
    padding: 10px 6px;
  }

  body.dashboard-page .dashboard-action-title {
    font-size: 11px;
  }

  body.dashboard-page .dashboard-action-copy {
    font-size: 10px;
  }

  body.dashboard-page .stat-value {
    font-size: 28px;
  }

  body.profile-page .profile-inline-action {
    min-width: 122px;
    font-size: 14px;
  }
}

body.job-lifecycle-page.dashboard-page .main-content {
  gap: 0;
}

body.job-lifecycle-page.dashboard-page .header.dashboard-hero {
  padding: 14px 0 18px;
  border-bottom: 1px solid #e5e7eb;
}

body.job-lifecycle-page.dashboard-page .dashboard-hero-top {
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

body.job-lifecycle-page.dashboard-page .dashboard-brand {
  justify-content: center;
  align-items: center;
  gap: 0;
}

body.job-lifecycle-page.dashboard-page .header-info {
  flex: 0 1 auto;
  align-items: center;
  text-align: center;
}

body.job-lifecycle-page.dashboard-page .header h3 {
  font-size: 24px;
  line-height: 1.1;
}

body.job-lifecycle-page.dashboard-page .header p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

body.job-lifecycle-page.dashboard-page .filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 16px 0 14px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #e5e7eb;
}

body.job-lifecycle-page.dashboard-page .filter-tabs .tab {
  appearance: none;
  -webkit-appearance: none;
  min-width: 0;
  width: 100%;
  min-height: 38px;
  padding: 0 4px;
  border: 1px solid #d6d9df;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  box-shadow: none;
  white-space: nowrap;
}

body.job-lifecycle-page.dashboard-page .filter-tabs .tab:hover {
  border-color: rgba(126, 87, 194, 0.34);
  background: #faf7ff;
  color: #5f3ea4;
}

body.job-lifecycle-page.dashboard-page .filter-tabs .tab.active {
  border-color: #7e57c2;
  background: #7e57c2;
  color: #ffffff;
  box-shadow: none;
}

body.job-lifecycle-page.dashboard-page .filter-tabs .tab:focus {
  outline: none;
}

body.job-lifecycle-page.dashboard-page .filter-tabs .tab:focus-visible {
  box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.18);
}

body.job-lifecycle-page.dashboard-page .booking-results-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px 12px;
}

body.job-lifecycle-page.dashboard-page .booking-results-count {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

body.job-lifecycle-page.dashboard-page .booking-results-hint {
  max-width: 170px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

body.job-lifecycle-page.dashboard-page .job-switcher {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0 0 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.job-lifecycle-page.dashboard-page .job-switcher::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body.job-lifecycle-page.dashboard-page .job-switcher.stacked {
  flex-direction: column;
  overflow-x: visible;
  overflow-y: visible;
  scrollbar-width: auto;
  -ms-overflow-style: auto;
}

body.job-lifecycle-page.dashboard-page .job-switcher.stacked::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

body.job-lifecycle-page.dashboard-page .job-switcher-card {
  width: auto;
  min-width: 220px;
  padding: 12px 14px;
  border: 1px solid #d6d9df;
  border-radius: 16px;
  background: #ffffff;
  color: #111827;
  text-align: left;
  box-shadow: none;
}

body.job-lifecycle-page.dashboard-page .job-switcher.stacked .job-switcher-card {
  width: 100%;
  min-width: 0;
}

body.job-lifecycle-page.dashboard-page .job-switcher-card.active {
  border-color: #7e57c2;
  background: #faf7ff;
  box-shadow: 0 0 0 2px rgba(126, 87, 194, 0.08);
}

body.job-lifecycle-page.dashboard-page .job-switcher-card:focus {
  outline: none;
}

body.job-lifecycle-page.dashboard-page .job-switcher-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.18);
}

body.job-lifecycle-page.dashboard-page .job-switcher-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

body.job-lifecycle-page.dashboard-page .job-switcher-code {
  color: #111827;
  font-size: 13px;
  font-weight: 700;
}

body.job-lifecycle-page.dashboard-page .job-switcher-card .status {
  padding: 6px 10px;
  font-size: 11px;
}

body.job-lifecycle-page.dashboard-page .job-switcher-title,
body.job-lifecycle-page.dashboard-page .job-switcher-customer,
body.job-lifecycle-page.dashboard-page .job-switcher-slot {
  margin: 0;
}

body.job-lifecycle-page.dashboard-page .job-switcher-title {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

body.job-lifecycle-page.dashboard-page .job-switcher-customer,
body.job-lifecycle-page.dashboard-page .job-switcher-slot {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}

body.job-lifecycle-page.dashboard-page .job-card-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

body.job-lifecycle-page.dashboard-page .job-details-section {
  width: 100%;
}

body.job-lifecycle-page.dashboard-page .lifecycle-card {
  width: 100%;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--dashboard-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--dashboard-shadow);
  overflow: hidden;
}

body.job-lifecycle-page.dashboard-page .lifecycle-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--dashboard-shadow-hover);
}

body.job-lifecycle-page.dashboard-page .job-card-header,
body.job-lifecycle-page.dashboard-page .lifecycle-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.job-lifecycle-page.dashboard-page .job-card-header {
  margin-bottom: 12px;
}

body.job-lifecycle-page.dashboard-page .lifecycle-card-head {
  margin-bottom: 18px;
}

body.job-lifecycle-page.dashboard-page .job-title-group,
body.job-lifecycle-page.dashboard-page .lifecycle-card-head > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.job-lifecycle-page.dashboard-page .job-card-eyebrow {
  margin: 0;
  color: var(--dashboard-purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.job-lifecycle-page.dashboard-page .job-card-header h2,
body.job-lifecycle-page.dashboard-page .lifecycle-card-head h2 {
  margin: 0;
  color: #111827;
  font-size: 17px;
  line-height: 1.35;
}

body.job-lifecycle-page.dashboard-page .job-card-copy {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

body.job-lifecycle-page.dashboard-page .job-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

body.job-lifecycle-page.dashboard-page .meta-pill,
body.job-lifecycle-page.dashboard-page .lifecycle-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
}

body.job-lifecycle-page.dashboard-page .meta-pill i {
  color: var(--dashboard-purple);
  font-size: 13px;
}

body.job-lifecycle-page.dashboard-page .job-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.job-lifecycle-page.dashboard-page .info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

body.job-lifecycle-page.dashboard-page .info-row i {
  width: 16px;
  margin-top: 2px;
  color: var(--dashboard-purple);
  flex-shrink: 0;
}

body.job-lifecycle-page.dashboard-page .status {
  margin-bottom: 0;
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

body.job-lifecycle-page.dashboard-page .status.pending,
body.job-lifecycle-page.dashboard-page .status.assigned,
body.job-lifecycle-page.dashboard-page .status.on-way,
body.job-lifecycle-page.dashboard-page .status.arrived,
body.job-lifecycle-page.dashboard-page .status.in-progress {
  background: #fff4db;
  color: #b7791f;
}

body.job-lifecycle-page.dashboard-page .status.accepted,
body.job-lifecycle-page.dashboard-page .status.completed {
  background: #e8f5ea;
  color: #1f7a3d;
}

body.job-lifecycle-page.dashboard-page .status.cancelled {
  background: #fee2e2;
  color: #b91c1c;
}

body.job-lifecycle-page.dashboard-page .job-card hr {
  margin: 16px 0 0;
  border: 0;
  border-top: 1px solid #edf2f7;
}

body.job-lifecycle-page.dashboard-page .job-card-nav {
  margin-top: 0;
  padding-top: 14px;
}

body.job-lifecycle-page.dashboard-page .job-card-nav .map-btn {
  width: 100%;
  min-height: 40px;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--dashboard-purple);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

body.job-lifecycle-page.dashboard-page .job-card-nav .map-btn:hover {
  background: var(--dashboard-purple);
  color: #ffffff;
  transform: none;
}

body.job-lifecycle-page.dashboard-page .timeline-card {
  max-width: none;
}

body.job-lifecycle-page.dashboard-page .timeline {
  position: relative;
}

body.job-lifecycle-page.dashboard-page .timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #e5e7eb;
}

body.job-lifecycle-page.dashboard-page .step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding-bottom: 18px;
}

body.job-lifecycle-page.dashboard-page .step:last-child {
  padding-bottom: 0;
}

body.job-lifecycle-page.dashboard-page .circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: none;
}

body.job-lifecycle-page.dashboard-page .circle i {
  font-size: 15px;
}

body.job-lifecycle-page.dashboard-page .step.active .circle {
  border-color: var(--dashboard-purple);
  background: var(--dashboard-purple);
  color: #ffffff;
  transform: none;
  box-shadow: 0 0 0 4px rgba(126, 87, 194, 0.14);
}

body.job-lifecycle-page.dashboard-page .step.completed .circle {
  border-color: #cfe8d5;
  background: #e8f5ea;
  color: #1f7a3d;
}

body.job-lifecycle-page.dashboard-page .content {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

body.job-lifecycle-page.dashboard-page .content h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 14px;
  line-height: 1.3;
}

body.job-lifecycle-page.dashboard-page .step .btn {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: none;
}

body.job-lifecycle-page.dashboard-page .step .btn.green {
  background: var(--dashboard-purple);
  color: #ffffff;
}

body.job-lifecycle-page.dashboard-page .step .btn.green:hover {
  background: var(--dashboard-purple);
  color: #ffffff;
  transform: none;
}

body.job-lifecycle-page.dashboard-page .step .btn.red {
  background: #dc2626;
  color: #ffffff;
}

body.job-lifecycle-page.dashboard-page .step .btn.red:hover {
  background: #dc2626;
  color: #ffffff;
  transform: none;
}

body.job-lifecycle-page.dashboard-page .step .btn.disabled,
body.job-lifecycle-page.dashboard-page .step .btn.disabled:hover {
  border: 1px solid #d6d9df;
  background: #ffffff;
  color: #6b7280;
  cursor: not-allowed;
  transform: none;
}

body.job-lifecycle-page.dashboard-page .work-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

body.job-lifecycle-page.dashboard-page .work-proof-remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

body.job-lifecycle-page.dashboard-page .work-proof-remove:hover {
  color: #991b1b;
}

body.job-lifecycle-page.dashboard-page .no-jobs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 20px;
  border: 1px dashed #d4dbe7;
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
}

body.job-lifecycle-page.dashboard-page .no-jobs-container i {
  font-size: 48px;
  color: #ddd;
}

body.job-lifecycle-page.dashboard-page .no-jobs-container h2 {
  margin: 0;
  color: #111827;
  font-size: 18px;
}

body.job-lifecycle-page.dashboard-page .no-jobs-container p {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
}

body.job-lifecycle-page.dashboard-page .no-jobs-container .btn-primary {
  flex: 0 0 auto;
  align-self: center;
  min-height: 40px;
  margin-top: 6px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dashboard-purple);
  color: #ffffff;
  font-size: 13px;
  box-shadow: none;
}

body.job-lifecycle-page.dashboard-page .no-jobs-container .btn-primary:hover {
  background: var(--dashboard-purple);
  color: #ffffff;
  transform: none;
}

@media (max-width: 360px) {
  body.job-lifecycle-page.dashboard-page .booking-results-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  body.job-lifecycle-page.dashboard-page .booking-results-hint {
    max-width: none;
    text-align: left;
  }

  body.job-lifecycle-page.dashboard-page .job-card-header,
  body.job-lifecycle-page.dashboard-page .lifecycle-card-head {
    flex-direction: column;
  }

  body.job-lifecycle-page.dashboard-page .status,
  body.job-lifecycle-page.dashboard-page .lifecycle-card-badge {
    align-self: flex-start;
  }
}

/* ===== USER-STYLE POPUP OVERRIDES ===== */
body.service-app .overlay {
  inset: 0;
  padding: 14px;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1300;
}

body.service-app .popup {
  width: 100%;
  max-height: calc(100dvh - 28px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  animation: servicePopupCardIn 0.22s ease both;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.service-app .popup::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body.service-app .popup:not(.earnings-history-popup):not(.transfer-details-popup):not(.withdrawal-popup):not(.provider-documents-popup) {
  max-width: 360px;
}

@keyframes servicePopupCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.service-app .popup-header {
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #eceff3;
  background: #ffffff;
}

body.service-app .popup-header h1 {
  flex: 1;
  margin: 0;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

body.service-app .popup .close-btn,
body.service-app .popup .back-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #efefef;
  color: #1f2937;
  font-size: 17px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.service-app .popup .close-btn:hover,
body.service-app .popup .back-btn:hover {
  background: #e5e7eb;
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

body.service-app .popup .spacer {
  width: 32px;
  min-width: 32px;
}

body.service-app .popup-body {
  padding: 16px;
}

body.service-app .popup-footer {
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid #eceff3;
  background: #ffffff;
}

body.service-app .popup .form-group label,
body.service-app .popup .field label {
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

body.service-app .popup .fake-input,
body.service-app .popup .form-group input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
body.service-app .popup .form-group select,
body.service-app .popup .form-group textarea {
  min-height: 48px;
  border: 1px solid #d5dce6;
  border-radius: 12px;
  background: #f8fafc;
  color: #111827;
  font-size: 14px;
  box-shadow: none;
}

body.service-app .popup textarea.fake-input,
body.service-app .popup .form-group textarea {
  min-height: 96px;
  padding: 14px 16px;
}

body.service-app .popup .fake-input:focus,
body.service-app .popup .form-group input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus,
body.service-app .popup .form-group select:focus,
body.service-app .popup .form-group textarea:focus {
  border-color: var(--sp-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.12);
  transform: none;
}

body.service-app .popup .form-hint {
  color: #6b7280;
  font-style: normal;
}

body.service-app .popup .tabs {
  gap: 8px;
  padding: 0 16px 12px;
  border-bottom: 0;
  background: #ffffff;
}

body.service-app .popup .tab {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #d5dce6;
  border-radius: 999px;
  background: #ffffff;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

body.service-app .popup .tab.active {
  border-color: rgba(126, 87, 194, 0.28);
  background: rgba(126, 87, 194, 0.08);
  color: var(--sp-primary);
  font-weight: 700;
}

body.service-app .popup .btn-primary,
body.service-app .popup .btn-secondary,
body.service-app .popup .save-btn,
body.service-app .popup .pill-btn,
body.service-app .popup .btn-outline {
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.service-app .popup .btn-primary,
body.service-app .popup .save-btn,
body.service-app .popup .pill-btn {
  border: 0;
  background: var(--sp-primary);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(126, 87, 194, 0.2);
}

body.service-app .popup .btn-primary:hover,
body.service-app .popup .save-btn:hover,
body.service-app .popup .pill-btn:hover {
  background: var(--sp-primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(126, 87, 194, 0.24);
}

body.service-app .popup .btn-secondary,
body.service-app .popup .btn-outline {
  border: 1px solid #d5dce6;
  background: #ffffff;
  color: #334155;
  box-shadow: none;
}

body.service-app .popup .btn-secondary:hover,
body.service-app .popup .btn-outline:hover {
  border-color: #c3ccd8;
  background: #f8fafc;
  color: #0f172a;
  transform: translateY(-1px);
}

body.service-app .notification-popup,
body.service-app .earnings-history-popup,
body.service-app .transfer-details-popup,
body.service-app .withdrawal-popup,
body.service-app .provider-documents-popup {
  border-radius: 20px;
}

body.service-app .transfer-details-popup .popup-body {
  padding: 20px;
}

body.service-app .withdrawal-popup .popup-body {
  padding: 24px;
}

@media (max-width: 480px) {
  body.service-app .overlay {
    padding: 12px;
    align-items: flex-start;
  }

  body.service-app .popup {
    max-height: calc(100dvh - 24px);
    margin: auto 0;
  }

  body.service-app .popup-header,
  body.service-app .popup-body,
  body.service-app .popup-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ===== PROFILE PAGE REFRESH ===== */
body.profile-page.dashboard-page .profile-main-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.profile-page.dashboard-page .profile-dashboard-hero {
  padding: 14px 0 18px;
  border-bottom: 1px solid #e5e7eb;
}

body.profile-page.dashboard-page .profile-dashboard-hero .dashboard-hero-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

body.profile-page.dashboard-page .profile-dashboard-hero .dashboard-brand {
  justify-content: center;
  align-items: center;
  gap: 0;
}

body.profile-page.dashboard-page .profile-dashboard-hero .header-info {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.profile-page.dashboard-page .profile-dashboard-hero .dashboard-kicker {
  display: block;
  margin: 0 0 4px;
  color: var(--dashboard-purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.profile-page.dashboard-page .profile-dashboard-hero h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: var(--dashboard-ink);
}

body.profile-page.dashboard-page .profile-dashboard-hero p {
  margin: 6px 0 0;
  max-width: none;
  color: var(--dashboard-soft);
  font-size: 14px;
}

body.profile-page.dashboard-page .profile-dashboard-back {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 2;
}

body.profile-page.dashboard-page .profile-dashboard-back:hover,
body.profile-page.dashboard-page .profile-dashboard-back:active {
  transform: translateY(-50%);
  background: transparent;
  color: #2a2a2a;
  box-shadow: none;
}

body.profile-page.dashboard-page .header .notification-btn,
body.profile-page.dashboard-page .profile-dashboard-hero .notification-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-left: 0;
  flex-shrink: 0;
  align-self: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  border: 1.5px solid #9a9a9a !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #3a3a3a !important;
  box-shadow: none !important;
  z-index: 2;
}

body.profile-page.dashboard-page .header .notification-btn:hover,
body.profile-page.dashboard-page .header .notification-btn:active,
body.profile-page.dashboard-page .profile-dashboard-hero .notification-btn:hover,
body.profile-page.dashboard-page .profile-dashboard-hero .notification-btn:active {
  transform: translateY(-50%);
  background: #ffffff !important;
  border-color: #9a9a9a !important;
  color: #3a3a3a !important;
  box-shadow: none !important;
}

body.profile-page.dashboard-page .header .notification-btn svg,
body.profile-page.dashboard-page .header .notification-btn i,
body.profile-page.dashboard-page .profile-dashboard-hero .notification-btn svg,
body.profile-page.dashboard-page .profile-dashboard-hero .notification-btn i {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

body.profile-page.dashboard-page .profile-summary-card {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  background: linear-gradient(180deg, #d0d2e0 0%, #c7c8da 100%);
  box-shadow: none;
}

body.profile-page.dashboard-page .profile-summary-card .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ece7f8;
  color: var(--dashboard-purple);
  flex-shrink: 0;
  box-shadow: none;
}

body.profile-page.dashboard-page .profile-summary-card .profile-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  min-width: 0;
  text-align: left;
}

body.profile-page.dashboard-page .profile-summary-card .profile-name h1 {
  margin: 0;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  text-align: left;
}

body.profile-page.dashboard-page #profileEmail,
body.profile-page.dashboard-page #profilePhone {
  margin: 2px 0 0;
  color: #4b4b4b;
  font-size: 14px;
  width: 100%;
  text-align: left;
}

body.profile-page.dashboard-page .profile-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  width: 100%;
}

body.profile-page.dashboard-page .profile-inline-action {
  min-width: 136px;
  min-height: 36px;
  margin-top: 0;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--dashboard-purple);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

body.profile-page.dashboard-page .profile-inline-action:hover {
  background: #6f4db1;
  transform: none;
}

body.profile-page.dashboard-page .profile-menu-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.profile-page.dashboard-page .service-profile-menu-list {
  margin-top: 18px;
}

body.profile-page.dashboard-page .menu-list,
body.profile-page.dashboard-page .extra-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.profile-page.dashboard-page .menu-item,
body.profile-page.dashboard-page .text-link {
  margin: 0;
  width: 100%;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid #b9b9b9;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: none !important;
}

body.profile-page.dashboard-page .service-profile-menu-item {
  width: 100%;
  height: 56px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid #b9b9b9;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
  transition: none !important;
}

body.profile-page.dashboard-page .service-profile-menu-item:last-child {
  margin-bottom: 0;
}

body.profile-page.dashboard-page .menu-item:hover,
body.profile-page.dashboard-page .text-link:hover {
  background: #ffffff;
  color: #1f1f1f;
  transform: none;
  box-shadow: none;
}

body.profile-page.dashboard-page .service-profile-menu-item:hover {
  background: #ffffff;
  color: #1f1f1f;
  transform: none;
  box-shadow: none;
}

body.profile-page.dashboard-page .extra-links .text-link:hover,
body.profile-page.dashboard-page .extra-links .text-link:focus,
body.profile-page.dashboard-page .extra-links .text-link:active {
  background: #ffffff !important;
  color: #1f1f1f !important;
  text-decoration: none !important;
  transform: none !important;
  box-shadow: none !important;
}

body.profile-page.dashboard-page .extra-links .text-link:hover span,
body.profile-page.dashboard-page .extra-links .text-link:focus span,
body.profile-page.dashboard-page .extra-links .text-link:active span,
body.profile-page.dashboard-page .extra-links .text-link:hover strong,
body.profile-page.dashboard-page .extra-links .text-link:focus strong,
body.profile-page.dashboard-page .extra-links .text-link:active strong {
  color: #1f1f1f !important;
  text-decoration: none !important;
}

body.profile-page.dashboard-page .menu-label,
body.profile-page.dashboard-page .text-link span {
  display: block;
}

body.profile-page.dashboard-page .extra-links .text-link,
body.profile-page.dashboard-page .extra-links .text-link:link,
body.profile-page.dashboard-page .extra-links .text-link:visited,
body.profile-page.dashboard-page .extra-links .text-link:hover,
body.profile-page.dashboard-page .extra-links .text-link:focus,
body.profile-page.dashboard-page .extra-links .text-link:active {
  background: #ffffff !important;
  color: #1f1f1f !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
  -webkit-tap-highlight-color: transparent;
}

body.profile-page.dashboard-page .menu-arrow,
body.profile-page.dashboard-page .text-link strong {
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  transition: none !important;
  transform: none !important;
}

body.profile-page.dashboard-page .service-profile-menu-item:hover .menu-arrow,
body.profile-page.dashboard-page .service-profile-menu-item:focus .menu-arrow,
body.profile-page.dashboard-page .extra-links .text-link:hover strong,
body.profile-page.dashboard-page .extra-links .text-link:focus strong,
body.profile-page.dashboard-page .extra-links .text-link:active strong {
  color: #333333 !important;
  transform: none !important;
}

body.job-history-page.dashboard-page .job-history-main-content {
  gap: 18px;
}

body.job-history-page.dashboard-page .job-history-dashboard-hero .dashboard-hero-top {
  position: relative;
  justify-content: center;
  min-height: 44px;
}

body.job-history-page.dashboard-page .job-history-dashboard-hero .dashboard-brand {
  width: 100%;
}

body.job-history-page.dashboard-page .job-history-dashboard-hero .header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}

body.job-history-page.dashboard-page .job-history-dashboard-hero .header-info h3 {
  margin: 0;
}

body.job-history-page.dashboard-page .job-history-dashboard-back {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 2;
}

body.job-history-page.dashboard-page .job-history-dashboard-back:hover,
body.job-history-page.dashboard-page .job-history-dashboard-back:active {
  transform: translateY(-50%);
  background: transparent;
  color: #2a2a2a;
  box-shadow: none;
}

body.job-history-page.dashboard-page .header .notification-btn,
body.job-history-page.dashboard-page .job-history-dashboard-hero .notification-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-left: 0;
  flex-shrink: 0;
  align-self: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  border: 1.5px solid #9a9a9a !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #3a3a3a !important;
  box-shadow: none !important;
  z-index: 2;
}

body.job-history-page.dashboard-page .header .notification-btn:hover,
body.job-history-page.dashboard-page .header .notification-btn:active,
body.job-history-page.dashboard-page .job-history-dashboard-hero .notification-btn:hover,
body.job-history-page.dashboard-page .job-history-dashboard-hero .notification-btn:active {
  transform: translateY(-50%);
  background: #ffffff !important;
  border-color: #9a9a9a !important;
  color: #3a3a3a !important;
  box-shadow: none !important;
}

body.job-history-page.dashboard-page .header .notification-btn svg,
body.job-history-page.dashboard-page .header .notification-btn i,
body.job-history-page.dashboard-page .job-history-dashboard-hero .notification-btn svg,
body.job-history-page.dashboard-page .job-history-dashboard-hero .notification-btn i {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

body.job-history-page.dashboard-page .job-history-intro {
  align-items: flex-start;
  gap: 4px;
  padding: 0;
  text-align: left;
}

body.job-history-page.dashboard-page .job-history-intro .dashboard-panel-copy {
  max-width: none;
}

body.job-history-page.dashboard-page .job-history-list-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.job-history-page.dashboard-page .job-history-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.job-history-page.dashboard-page .job-history-filter-tabs .tab {
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid #d5dce6;
  border-radius: 999px;
  background: #ffffff;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

body.job-history-page.dashboard-page .job-history-filter-tabs .tab.active {
  border-color: rgba(126, 87, 194, 0.28);
  background: rgba(126, 87, 194, 0.08);
  color: var(--sp-primary);
  font-weight: 700;
}

body.job-history-page.dashboard-page .job-history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

body.job-history-page.dashboard-page .job-card {
  margin-bottom: 0;
  width: 100%;
  min-height: 152px;
  padding: 18px 16px 20px;
  border: 1px solid rgba(219, 226, 234, 0.9);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 10px 20px rgba(16, 42, 67, 0.055);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.job-history-page.dashboard-page .job-card:hover,
body.job-history-page.dashboard-page .job-card:active {
  transform: none;
  box-shadow: 0 10px 20px rgba(16, 42, 67, 0.055);
}

body.job-history-page.dashboard-page .job-title {
  color: #111111;
  font-size: 16px;
  font-weight: 700;
}

body.job-history-page.dashboard-page .job-sub {
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 4px;
}

body.job-history-page.dashboard-page .job-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 2px;
  margin-bottom: 10px;
  color: #5b6472;
  font-size: 13px;
}

body.job-history-page.dashboard-page .job-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.job-history-page.dashboard-page .amount {
  color: #111111;
  font-size: 18px;
  font-weight: 700;
}

body.job-history-page.dashboard-page .job-card .row {
  align-items: flex-start;
}

body.job-history-page.dashboard-page .job-card .row.bottom {
  align-items: center;
}

body.job-history-page.dashboard-page .chip-accepted {
  background: #e8f5ea;
  color: #1f7a3d;
}

body.job-history-page.dashboard-page .chip-assigned {
  background: #fff4db;
  color: #b7791f;
}

body.job-history-page.dashboard-page .job-card .details:hover,
body.job-history-page.dashboard-page .job-card .details:active {
  color: inherit;
  text-decoration: none;
  transform: none;
}

body.job-history-page.dashboard-page .job-history-empty-card {
  text-align: left;
}

body.profile-page.dashboard-page .extra-links .profile-action-btn {
  margin: 0;
  width: 100%;
  min-height: 48px;
  border: 1.5px solid #b5b5b5;
  border-radius: 999px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
}

body.profile-page.dashboard-page .extra-links .profile-action-btn:hover {
  transform: none;
  box-shadow: none;
}

body.profile-page.dashboard-page .extra-links .profile-action-btn-danger {
  border-color: rgba(205, 50, 50, 0.22);
  background: #fff5f5;
  color: #cd3232;
}

body.profile-page.dashboard-page .edit-profile-popup-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 16px;
  border-radius: 16px;
}

body.profile-page.dashboard-page .edit-profile-popup-body {
  display: flex;
  flex-direction: column;
}

body.profile-page.dashboard-page .edit-profile-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border: 0;
  border-radius: 50%;
  background: #efefef;
  color: #1f2937;
  font-size: 18px;
  line-height: 1;
  box-shadow: none;
}

body.profile-page.dashboard-page .edit-profile-close-btn:hover,
body.profile-page.dashboard-page .edit-profile-close-btn:active {
  background: #efefef;
  color: #1f2937;
  transform: none;
  box-shadow: none;
}

body.profile-page.dashboard-page .edit-profile-popup-card h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
}

body.profile-page.dashboard-page .service-profile-popup-overlay[hidden] {
  display: none;
}

body.profile-page.dashboard-page .service-profile-popup-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100vw, 420px);
  transform: translateX(-50%);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(17, 24, 39, 0.48);
  overflow-y: auto;
}

body.profile-page.dashboard-page .service-profile-popup-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  max-height: calc(100dvh - 36px);
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
}

body.profile-page.dashboard-page .service-profile-popup-card h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

body.profile-page.dashboard-page .service-profile-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #efefef;
  color: #1f2937;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

body.profile-page.dashboard-page .service-profile-popup-primary-btn,
body.profile-page.dashboard-page .service-profile-popup-secondary-btn {
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: none;
}

body.profile-page.dashboard-page .service-profile-popup-primary-btn {
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
}

body.profile-page.dashboard-page .service-profile-popup-secondary-btn {
  flex: 1;
  border: 1.5px solid #b5b5b5;
  background: #ffffff;
  color: #1f1f1f;
}

body.profile-page.dashboard-page .change-password-subtitle {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.45;
}

body.profile-page.dashboard-page .change-password-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

body.profile-page.dashboard-page .change-password-step + .change-password-step {
  margin-top: 12px;
}

body.profile-page.dashboard-page .change-password-step label {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
}

body.profile-page.dashboard-page .change-password-step .phone-input,
body.profile-page.dashboard-page .change-password-step .password-input {
  margin-bottom: 0;
  height: 44px;
  font-size: 13px;
}

body.profile-page.dashboard-page .change-password-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  body.profile-page.dashboard-page .service-profile-popup-overlay {
    padding: 14px;
  }

  body.profile-page.dashboard-page .service-profile-popup-card {
    width: 100%;
    max-height: calc(100dvh - 28px);
    max-width: 360px;
    padding: 14px;
    border-radius: 16px;
  }

  body.profile-page.dashboard-page .change-password-actions {
    flex-direction: column;
  }

  body.profile-page.dashboard-page .service-profile-popup-secondary-btn {
    width: 100%;
  }
}

body.profile-page.dashboard-page .change-password-status {
  display: none;
  margin: 8px 0 12px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
}

body.profile-page.dashboard-page .change-password-status.is-success {
  display: block;
  background: #e9f8ef;
  color: #1e7e34;
  border-color: #b9e3c6;
}

body.profile-page.dashboard-page .change-password-status.is-error {
  display: block;
  background: #ffecec;
  color: #c0392b;
  border-color: #f3b2ac;
}

body.profile-page.dashboard-page .edit-profile-popup-subtitle {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
}

body.profile-page.dashboard-page .avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body.profile-page.dashboard-page .avatar-wrap .avatar {
  width: 80px;
  height: 80px;
  margin: 0;
  border-radius: 50%;
  background: #ece7f8;
  color: var(--dashboard-purple);
}

body.profile-page.dashboard-page .avatar-wrap .user-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

body.profile-page.dashboard-page .pill-btn {
  min-width: 132px;
  min-height: 42px;
  padding: 0 18px;
}

body.profile-page.dashboard-page .form-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.profile-page.dashboard-page .field {
  margin-bottom: 14px;
}

body.profile-page.dashboard-page .field:last-of-type {
  margin-bottom: 0;
}

body.profile-page.dashboard-page .fake-input {
  width: 100%;
  color: #111827;
}

body.profile-page.dashboard-page textarea.fake-input {
  resize: vertical;
}

body.profile-page.dashboard-page .save-btn {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-main {
  display: block;
  width: 100%;
  padding: 0 0 110px;
  max-width: none;
  margin: 0;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-hero {
  position: relative;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #d8d8d8;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-hero h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1f1f1f;
}

body.service-edit-profile-page.dashboard-page .edit-profile-back-btn {
  position: absolute;
  left: 0;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  font-size: 30px;
  line-height: 1;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-card {
  width: 100%;
  margin-top: 18px;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-photo {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: none;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-photo img,
body.service-edit-profile-page.dashboard-page .service-edit-profile-photo-placeholder {
  width: 100%;
  height: 100%;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-photo img {
  display: block;
  object-fit: cover;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7e57c2;
  font-size: 40px;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-photo-btn {
  display: block;
  width: 120px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #7e57c2;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-photo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-photo-btn-secondary {
  background: #f3edf9;
  color: #7e57c2;
  border: 1px solid rgba(126, 87, 194, 0.26);
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-form {
  margin-top: 12px;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-form label,
body.service-edit-profile-page.dashboard-page .service-edit-profile-label {
  display: block;
  margin: 10px 0 6px;
  color: #555;
  font-size: 14px;
  font-weight: 400;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #bdbdbd;
  border-radius: 14px;
  background: #ffffff;
  color: #222;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-input:focus {
  border-color: #7e57c2;
  box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.12);
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-input[readonly] {
  background: #fff;
  color: #666;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
}

body.service-edit-profile-page.dashboard-page .service-edit-gender-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.service-edit-profile-page.dashboard-page .service-edit-gender-btn {
  width: 100%;
  min-height: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #bdbdbd;
  border-radius: 999px;
  background: #ffffff;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.service-edit-profile-page.dashboard-page .service-edit-gender-btn.active {
  border-color: #7e57c2;
  background: #7e57c2;
  color: #fff;
  font-weight: 700;
  box-shadow: none;
}

body.service-edit-profile-page.dashboard-page .service-edit-dob-field {
  display: block;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-save-btn {
  width: 100%;
  height: 48px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: #7e57c2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

body.service-edit-profile-page.dashboard-page .service-edit-profile-save-btn:disabled,
body.service-edit-profile-page.dashboard-page .service-edit-profile-photo-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 360px) {
  body.profile-page.dashboard-page .profile-dashboard-hero h3 {
    font-size: 22px;
  }

  body.profile-page.dashboard-page .profile-dashboard-back {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  body.profile-page.dashboard-page .header .notification-btn,
  body.profile-page.dashboard-page .profile-dashboard-hero .notification-btn {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  body.profile-page.dashboard-page .profile-inline-action {
    min-width: 122px;
    font-size: 14px;
  }

  body.profile-page.dashboard-page .edit-profile-popup-card {
    padding: 14px;
  }

  body.service-edit-profile-page.dashboard-page .service-edit-gender-row {
    grid-template-columns: 1fr;
  }

  body.service-edit-profile-page.dashboard-page .service-edit-profile-card {
    margin-top: 18px;
  }
}

/* ===== MONEY PAGE DASHBOARD REFRESH ===== */
body.money-page.dashboard-page .money-main-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.money-page.dashboard-page .money-dashboard-hero {
  padding: 14px 0 18px;
  border-bottom: 1px solid #e5e7eb;
}

body.money-page.dashboard-page .money-dashboard-hero .dashboard-hero-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

body.money-page.dashboard-page .money-dashboard-hero .dashboard-brand {
  justify-content: center;
  align-items: center;
  gap: 0;
}

body.money-page.dashboard-page .money-dashboard-hero .header-info {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.money-page.dashboard-page .money-dashboard-hero h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: var(--dashboard-ink);
}

body.money-page.dashboard-page .money-dashboard-hero p {
  margin: 6px 0 0;
  color: var(--dashboard-soft);
  font-size: 14px;
}

body.money-page.dashboard-page .money-dashboard-back {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 2;
}

body.money-page.dashboard-page .money-dashboard-back:hover,
body.money-page.dashboard-page .money-dashboard-back:active {
  transform: translateY(-50%);
  background: transparent;
  color: #2a2a2a;
  box-shadow: none;
}

body.money-page.dashboard-page .money-dashboard-hero .notification-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-left: 0;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 8px;
  border: 1.5px solid #9a9a9a;
  border-radius: 50%;
  background: #ffffff;
  color: #3a3a3a;
  box-shadow: none;
  z-index: 2;
}

body.money-page.dashboard-page .money-dashboard-hero .notification-btn:hover,
body.money-page.dashboard-page .money-dashboard-hero .notification-btn:active {
  transform: translateY(-50%);
  background: #ffffff;
  border-color: #9a9a9a;
  color: #3a3a3a;
  box-shadow: none;
}

body.money-page.dashboard-page .money-dashboard-hero .notification-btn svg {
  width: 30px;
  height: 30px;
}

body.money-page.dashboard-page .money-panel-intro,
body.money-page.dashboard-page .money-section-intro {
  align-items: flex-start;
  gap: 4px;
  padding: 0;
  text-align: left;
}

body.money-page.dashboard-page .money-section-intro {
  margin-bottom: 12px;
}

body.money-page.dashboard-page .money-history-intro {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.money-page.dashboard-page .money-main-content .section-title {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--dashboard-ink);
  font-size: 20px;
  text-align: left;
}

body.money-page.dashboard-page .money-summary-grid,
body.money-page.dashboard-page .money-transfer-grid {
  gap: 12px;
}

body.money-page.dashboard-page .money-transfer-section,
body.money-page.dashboard-page .money-history-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.money-page.dashboard-page .money-summary-grid .earnings-card,
body.money-page.dashboard-page .money-summary-grid .balance-card,
body.money-page.dashboard-page .money-transfer-grid .transfer-card:not(.see-all) {
  margin: 0;
  width: 100%;
  min-height: 164px;
  padding: 16px;
  border: 1px solid var(--dashboard-line);
  border-radius: 16px;
  background: #ffffff;
  color: inherit;
  box-shadow: var(--dashboard-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

body.money-page.dashboard-page .money-summary-grid .earnings-card:hover,
body.money-page.dashboard-page .money-summary-grid .balance-card:hover,
body.money-page.dashboard-page .money-transfer-grid .transfer-card:not(.see-all):hover {
  transform: translateY(-2px);
  box-shadow: var(--dashboard-shadow-hover);
}

body.money-page.dashboard-page .money-main-content .money-stat-card .stat-card-head {
  width: 100%;
  max-width: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.money-page.dashboard-page .money-main-content .money-stat-card .stat-content {
  width: 100%;
  max-width: none;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}

body.money-page.dashboard-page .money-main-content .money-stat-card .stat-label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

body.money-page.dashboard-page .money-main-content .money-stat-card .stat-value {
  margin: 0;
  font-size: 26px;
  line-height: 1;
}

body.money-page.dashboard-page .money-main-content .money-stat-card .stat-copy {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
}

body.money-page .summary-card p {
  font-size: 16px;
}

body.money-page .withdrawal-balance-panel .balance-card p,
body.money-page #feeAmount,
body.money-page #netAmount {
  font-size: 26px;
}

body.money-page .earning-amount .amount,
body.money-page .transaction-amount .amount {
  font-size: 15px;
}

body.money-page .withdrawal-popup .close-btn {
  font-weight: 800;
  font-size: 22px;
  color: #111827;
}

body.money-page.dashboard-page .money-main-content .money-stat-card .stat-chip {
  font-size: 10px;
}

body.money-page.dashboard-page .money-summary-grid .months {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 8px;
  margin-top: 14px;
}

body.money-page.dashboard-page .money-summary-grid .months span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 8px;
  border: 1px solid #d5dce6;
  border-radius: 10px;
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.money-page.dashboard-page .money-summary-grid .months span:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

body.money-page.dashboard-page .money-summary-grid .months span.active {
  border-color: rgba(78, 103, 216, 0.22);
  background: #eef3ff;
  color: var(--dashboard-blue);
  font-weight: 700;
}

body.money-page.dashboard-page .money-transfer-grid .see-all {
  margin: 0;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
}

body.money-page.dashboard-page .money-transfer-grid .see-all .overview-count {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

body.money-page.dashboard-page .money-history-link {
  margin-left: auto;
  flex-shrink: 0;
}

body.money-page.dashboard-page .withdrawal-request-btn {
  width: 100%;
  min-height: 52px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: var(--dashboard-purple);
  color: #ffffff;
  font-size: 14px;
  box-shadow: none;
}

body.money-page.dashboard-page .withdrawal-request-btn:hover {
  background: #6f4db1;
  transform: none;
  box-shadow: none;
}

body.money-page.dashboard-page .withdrawal-request-btn i {
  font-size: 16px;
}

body.money-page.dashboard-page .history-placeholder {
  min-height: 120px;
  margin: 0;
  gap: 12px;
}

body.money-page.dashboard-page .transaction-item {
  padding: 14px 16px;
  border: 1px solid var(--dashboard-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--dashboard-shadow);
}

body.schedule-management-page.dashboard-page .schedule-dashboard-hero .dashboard-hero-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

body.schedule-management-page.dashboard-page .schedule-dashboard-hero .dashboard-brand {
  justify-content: center;
  align-items: center;
  gap: 0;
}

body.schedule-management-page.dashboard-page .schedule-dashboard-hero .header-info {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.schedule-management-page.dashboard-page .schedule-dashboard-hero h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: var(--dashboard-ink);
}

body.schedule-management-page.dashboard-page .schedule-dashboard-hero p {
  margin: 6px 0 0;
  color: var(--dashboard-soft);
  font-size: 14px;
}

body.schedule-management-page.dashboard-page .schedule-dashboard-back {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 2;
}

body.schedule-management-page.dashboard-page .schedule-dashboard-back:hover,
body.schedule-management-page.dashboard-page .schedule-dashboard-back:active {
  transform: translateY(-50%);
  background: transparent;
  color: #2a2a2a;
  box-shadow: none;
}

body.schedule-management-page.dashboard-page .schedule-dashboard-hero .notification-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-left: 0;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 8px;
  border: 1.5px solid #9a9a9a;
  border-radius: 50%;
  background: #ffffff;
  color: #3a3a3a;
  box-shadow: none;
  z-index: 2;
}

body.schedule-management-page.dashboard-page .schedule-dashboard-hero .notification-btn:hover,
body.schedule-management-page.dashboard-page .schedule-dashboard-hero .notification-btn:active {
  transform: translateY(-50%);
  background: #ffffff;
  border-color: #9a9a9a;
  color: #3a3a3a;
  box-shadow: none;
}

@media (max-width: 360px) {
  body.money-page.dashboard-page .money-dashboard-back {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  body.money-page.dashboard-page .money-dashboard-hero .notification-btn {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  body.money-page.dashboard-page .money-history-intro {
    align-items: flex-start;
  }
}

.auth-role-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 320px;
  border-radius: 999px;
  background: #f3f4f6;
}

.auth-role-toggle-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4b5563;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 12px 18px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.auth-role-toggle-btn[aria-pressed="true"] {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.auth-role-panel[hidden] {
  display: none !important;
}
body.schedule-management-page .reschedule-requests-card {
  scroll-margin-top: 88px;
  margin: 14px 8px 15px 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

body.schedule-management-page .reschedule-requests-card.is-highlighted {
  box-shadow: none;
  transform: none;
}

body.schedule-management-page .reschedule-requests-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

body.schedule-management-page .reschedule-requests-head p,
body.schedule-management-page .reschedule-security-note {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #5f6b7a;
}

body.schedule-management-page .reschedule-requests-head .card-title {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
  color: #14213d;
}

body.schedule-management-page .reschedule-summary-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 10px;
  min-width: min(100%, 252px);
}

body.schedule-management-page .reschedule-toolbar {
  margin: 0 0 16px;
  padding: 0 0 14px;
  border-bottom: 1px solid #e5e7eb;
}

body.schedule-management-page .reschedule-filter-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
}

body.schedule-management-page .reschedule-filter-tab {
  appearance: none;
  -webkit-appearance: none;
  min-width: 0;
  width: 100%;
  min-height: 38px;
  padding: 0 4px;
  border: 1px solid #d6d9df;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  box-shadow: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.schedule-management-page .reschedule-filter-tab:hover {
  border-color: rgba(126, 87, 194, 0.34);
  background: #faf7ff;
  color: #5f3ea4;
}

body.schedule-management-page .reschedule-filter-tab.active {
  border-color: #7e57c2;
  background: #7e57c2;
  color: #ffffff;
}

body.schedule-management-page .reschedule-filter-tab:focus {
  outline: none;
}

body.schedule-management-page .reschedule-filter-tab:focus-visible {
  box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.18);
}

body.schedule-management-page .card {
  margin: 14px 8px 15px 2px;
}

body.schedule-management-page .schedule-view-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: calc(100% - 10px);
  margin: 4px 8px 10px 2px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid #d9dfef;
}

body.schedule-management-page .schedule-view-toggle-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #596579;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.schedule-management-page .schedule-view-toggle-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, #7e57c2, #5b3fa1);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(91, 63, 161, 0.22);
}

body.schedule-management-page .schedule-view-toggle-btn:not([aria-pressed="true"]):hover {
  color: #364152;
  background: rgba(255, 255, 255, 0.58);
}

body.schedule-management-page .schedule-view-panel[hidden] {
  display: none !important;
}

body.schedule-management-page .stats-grid .stat-value {
  font-size: 16px;
  line-height: 1.25;
}

body.schedule-management-page .stats-grid .stat-card {
  min-height: 118px;
  padding: 12px 12px 14px;
}

body.schedule-management-page .stats-grid .stat-card:hover {
  transform: none;
  box-shadow: 0 4px 10px rgba(20, 28, 40, 0.06);
}

body.schedule-management-page .stats-grid .stat-content {
  min-height: 36px;
  justify-content: center;
}

body.schedule-management-page .stats-grid .stat-label {
  font-size: 13px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.schedule-management-page .stats-grid .stat-card-head {
  margin-bottom: 8px;
  gap: 8px;
}

body.schedule-management-page .stats-grid .stat-icon {
  width: 44px;
  height: 44px;
}

body.schedule-management-page .stats-grid .stat-icon svg {
  width: 20px;
  height: 20px;
}

body.schedule-management-page .stats-grid .stat-chip {
  font-size: 10px;
}

body.schedule-management-page .stats-grid .stat-icon.status {
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  color: #1d4ed8;
}

body.schedule-management-page .stats-grid .stat-icon.jobs {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  color: #2563eb;
}

body.schedule-management-page .stats-grid .stat-icon.queue {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #b45309;
}

body.schedule-management-page .reschedule-summary-chip,
body.schedule-management-page .reschedule-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

body.schedule-management-page .reschedule-summary-chip {
  min-height: 70px;
  padding: 12px 16px;
  border-radius: 18px;
  justify-content: flex-start;
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.schedule-management-page .reschedule-summary-chip.total {
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  color: #3347a3;
  border-color: #cad7ff;
}

body.schedule-management-page .reschedule-summary-chip.pending,
body.schedule-management-page .reschedule-status-badge.pending {
  background: #fff7dc;
  color: #a16207;
  border-color: #f4d98f;
}

body.schedule-management-page .reschedule-summary-chip.approved,
body.schedule-management-page .reschedule-status-badge.approved {
  background: #e7f8ee;
  color: #166534;
  border-color: #9ed9b3;
}

body.schedule-management-page .reschedule-summary-chip.rejected,
body.schedule-management-page .reschedule-status-badge.rejected {
  background: #ffe8e8;
  color: #b42318;
  border-color: #f0a6a6;
}

body.schedule-management-page .reschedule-security-note {
  margin: 0 0 16px;
  padding: 13px 15px;
  border: 1px solid #d6e4f5;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff, #edf6ff);
  color: #4b5c74;
}

body.schedule-management-page .reschedule-request-list {
  display: grid;
  gap: 14px;
}

body.schedule-management-page .reschedule-request-empty {
  padding: 24px 18px;
  border-radius: 18px;
  border: 1px dashed #cfd8e6;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
  text-align: center;
  color: #6b7280;
  font-size: 13px;
}

body.schedule-management-page .reschedule-request-item {
  padding: 18px;
  border: 1px solid #e4eaf3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

body.schedule-management-page .reschedule-request-item.highlighted {
  border-color: #f3b530;
  background: linear-gradient(180deg, #fffdf5, #ffffff);
  box-shadow: 0 14px 32px rgba(243, 181, 48, 0.16);
}

body.schedule-management-page .reschedule-request-top,
body.schedule-management-page .reschedule-request-meta,
body.schedule-management-page .reschedule-slot-grid,
body.schedule-management-page .reschedule-user-row,
body.schedule-management-page .reschedule-actions {
  display: flex;
  gap: 10px;
}

body.schedule-management-page .reschedule-request-top,
body.schedule-management-page .reschedule-user-row {
  align-items: flex-start;
  justify-content: space-between;
}

body.schedule-management-page .reschedule-request-meta {
  flex-wrap: wrap;
  margin-top: 10px;
  color: #617083;
  font-size: 12px;
}

body.schedule-management-page .reschedule-request-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f6fb;
  border: 1px solid #e4eaf3;
}

body.schedule-management-page .reschedule-request-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #152238;
}

body.schedule-management-page .reschedule-request-service,
body.schedule-management-page .reschedule-user-name {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

body.schedule-management-page .reschedule-slot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  margin-top: 16px;
  gap: 12px;
  align-items: stretch;
}

body.schedule-management-page .reschedule-slot-box {
  min-width: 0;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff, #f5f8fd);
  border: 1px solid #e6edf6;
}

body.schedule-management-page .reschedule-slot-box.old {
  border-color: #dbe3ee;
  background: linear-gradient(180deg, #fcfdff, #f6f8fb);
}

body.schedule-management-page .reschedule-slot-box.new {
  border-color: #cfe3d4;
  background: linear-gradient(180deg, #f8fdf9, #eef9f1);
}

body.schedule-management-page .reschedule-slot-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: #7e57c2;
  font-size: 20px;
  font-weight: 700;
}

body.schedule-management-page .reschedule-slot-box strong,
body.schedule-management-page .reschedule-user-row strong,
body.schedule-management-page .reschedule-reason strong {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #748195;
}

body.schedule-management-page .reschedule-slot-date {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #152238;
  line-height: 1.4;
}

body.schedule-management-page .reschedule-slot-time {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(126, 87, 194, 0.08);
  color: #5b3fa1;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

body.schedule-management-page .reschedule-slot-box span,
body.schedule-management-page .reschedule-user-row span,
body.schedule-management-page .reschedule-reason span {
  display: block;
  font-size: 13px;
  color: #111827;
  line-height: 1.55;
}

body.schedule-management-page .reschedule-user-row,
body.schedule-management-page .reschedule-reason {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #ebf0f6;
  background: #f9fbfe;
}

body.schedule-management-page .reschedule-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.schedule-management-page .reschedule-user-row > div {
  flex: 1 1 0;
  min-width: 0;
}

body.schedule-management-page .reschedule-actions {
  flex-wrap: wrap;
  margin-top: 16px;
}

body.schedule-management-page .reschedule-action-btn {
  min-width: 140px;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

body.schedule-management-page .reschedule-action-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

body.schedule-management-page .reschedule-action-btn:disabled {
  opacity: 0.6;
  cursor: wait;
  box-shadow: none;
  transform: none;
}

body.schedule-management-page .reschedule-action-btn.approve {
  background: #1d9b5f;
  color: #fff;
}

body.schedule-management-page .reschedule-action-btn.reject {
  background: #dc4c4c;
  color: #fff;
}

body.schedule-management-page .notification-item.notification-action {
  cursor: pointer;
}

body.schedule-management-page .notification-item.notification-action:hover {
  border-color: #d7def5;
  background: #f8faff;
}

body.schedule-management-page .notification-item.notification-action .notification-text::after {
  content: " Tap to review";
  color: #4154b3;
  font-weight: 600;
}

@media (max-width: 480px) {
  body.schedule-management-page .reschedule-requests-head,
  body.schedule-management-page .reschedule-user-row {
    flex-direction: column;
  }

  body.schedule-management-page .reschedule-slot-grid,
  body.schedule-management-page .reschedule-detail-grid {
    grid-template-columns: 1fr;
  }

  body.schedule-management-page .reschedule-slot-arrow {
    min-height: 20px;
    transform: rotate(90deg);
  }

  body.schedule-management-page .reschedule-summary-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  body.schedule-management-page .reschedule-action-btn {
    flex: 1 1 0;
  }

  body.schedule-management-page .reschedule-requests-card {
    padding: 0;
  }

  body.schedule-management-page .reschedule-filter-tabs {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  body.schedule-management-page .reschedule-filter-tabs::-webkit-scrollbar {
    display: none;
  }
}
