.route-reschedule-wrapper {
  padding: 16px;
  padding-bottom: 120px;
  background: #f5f7fb;
  min-height: 100vh;
  overflow-x: hidden;
}

/* =========================================
HEADER
========================================= */

.route-reschedule-header {
  margin-bottom: 10px;
  padding-top: 62px;
}

.route-reschedule-header-top {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  padding: 0 16px;
  background: #2563eb;
  border-bottom: 1px solid #e5e7eb;
  box-sizing: border-box;
}

.route-reschedule-back-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  font-size: 18px;
  cursor: pointer;
  color: #2563eb;
}

.route-reschedule-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.route-reschedule-client-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.route-reschedule-client-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.route-reschedule-client-info {
  flex: 1;
}

.route-reschedule-client-name {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.route-reschedule-client-address {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

/* =========================================
SECTIONS
========================================= */

.route-reschedule-section {
  background: white;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.route-reschedule-section-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}

/* =========================================
CURRENT VISIT
========================================= */

.route-reschedule-current-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.route-reschedule-current-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.route-reschedule-current-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.route-reschedule-current-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.route-reschedule-current-value {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  text-align: right;
}

/* =========================================
FIELDS
========================================= */

.route-reschedule-field {
  margin-bottom: 18px;
}

.route-reschedule-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.route-reschedule-input,
.route-reschedule-select,
.route-reschedule-textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.route-reschedule-input:focus,
.route-reschedule-select:focus,
.route-reschedule-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.route-reschedule-textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

/* =========================================
ACTIONS
========================================= */

.route-reschedule-actions {
  margin-top: 28px;
}

.route-reschedule-save-btn {
  width: 100%;
  border: none;
  border-radius: 18px;
  background: #2563eb;
  color: white;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);

  transition: all 0.2s ease;
}

.route-reschedule-save-btn:active {
  transform: scale(0.98);
}

/* =========================================
INFO BOX
========================================= */

.route-reschedule-info-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  font-size: 14px;
  color: #1e40af;
  line-height: 1.5;
}

.route-reschedule-info-box i {
  font-size: 18px;
  margin-top: 1px;
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 480px) {
  .route-reschedule-wrapper {
    padding: 14px;
  }

  .route-reschedule-client-card {
    padding: 16px;
  }

  .route-reschedule-section {
    padding: 18px;
  }
}
