.online-service-detail-page {
  padding-top: 5px;
  padding-bottom: 120px;
  padding-left: 6px;
  padding-right: 6px;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

/* ======================================
HEADER
====================================== */
.online-service-detail-header {
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 14px;
}

/* ======================================
EXPANDABLE
====================================== */

.online-service-expandable-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.online-service-expandable-arrow {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 14px;
  transition: all 0.25s ease;
}

.online-service-expandable-header.collapsed .online-service-expandable-arrow i {
  transform: rotate(180deg);
}

/* ======================================
EXPANDABLE BODY
====================================== */

.online-service-expandable-body {
  overflow: hidden;
  max-height: 2000px;
  opacity: 1;
  transition:
    max-height 0.25s ease,
    opacity 0.25s ease,
    margin-top 0.25s ease;
}

.online-service-expandable-body.collapsed {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
}

.online-service-expandable-body:not(.collapsed) {
  max-height: 4000px;
  opacity: 1;
}

/* ======= RENGLON 1 ======= */

/* ======================================
LEFT
====================================== */
.online-service-detail-left {
  flex: 1.5;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.online-service-detail-back-btn {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  cursor: pointer;
}

.online-service-detail-back-btn:active {
  transform: scale(0.96);
}

.online-service-detail-customer-block {
  flex: 1;

  min-width: 0;
}

.online-service-detail-customer-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.online-service-detail-customer {
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  line-height: 1.05;
}

.online-service-detail-customer-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.online-service-detail-status {
  margin-top: 8px;
  margin-left: -38px;
  width: fit-content;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}

.online-service-detail-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.online-service-detail-status.reviewing {
  background: #dbeafe;
  color: #1d4ed8;
}

.online-service-detail-status.completed {
  background: #dcfce7;
  color: #166534;
}

/* ======================================
ADDRESS
====================================== */

.online-service-detail-address {
  margin-top: 2px;
  margin-left: -38px;
  padding-left: 4px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.online-service-detail-address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.online-service-detail-address i {
  font-size: 14px;
}

/* ======================================
RIGHT
====================================== */

.online-service-detail-right {
  flex: 1;
  min-width: 120px;
  flex-shrink: 0;
  padding-left: 14px;
  border-left: 1px solid #e5e7eb;
}

.online-service-detail-info-title {
  font-size: 14px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 8px;
}

.online-service-detail-info-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.1;
}

.online-service-detail-info-row span {
  color: #6b7280;
}

.online-service-detail-info-row b {
  color: #111827;
  font-weight: 700;
}

/* ======= RENGLON 2 ======= */
/* ======================================
CONTACT BLOCK
====================================== */
.online-service-contact-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.online-service-contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.online-service-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0;
  border-bottom: 1px solid #f1f5f9;
}

.online-service-contact-row:last-child {
  border-bottom: none;
}

.online-service-contact-value {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  overflow: hidden;
}

.online-service-contact-value i {
  font-size: 14px;
  color: #2563eb;
  flex-shrink: 0;
}

.online-service-contact-value span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.online-service-contact-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.online-service-contact-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

.online-service-contact-btn i {
  font-size: 18px;
}

/* ======================================
WHATSAPP
====================================== */
.online-service-contact-btn.whatsapp {
  background: #dcfce7;
  color: #16a34a;
}

/* ======================================
SMS
====================================== */
.online-service-contact-btn.sms {
  background: #dbeafe;
  color: #2563eb;
}

/* ======================================
CALL
====================================== */
.online-service-contact-btn.call {
  background: #f3f4f6;
  color: #111827;
}

/* ======================================
EMAIL
====================================== */
.online-service-contact-btn.email {
  background: #eff6ff;
  color: #2563eb;
}

/* ======= RENGLON 3 ======= */
/* ======================================
MESSAGE BLOCK
====================================== */
.online-service-message-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ======================================
TITLE
====================================== */
.online-service-message-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.online-service-message-title i {
  font-size: 15px;
}

.online-service-message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
}

.online-service-message-toggle {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  cursor: pointer;
  flex-shrink: 0;
}

/* ======================================
MESSAGE BOX
====================================== */
.online-service-message-box {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 14px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  color: #1e293b;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  align-items: flex-start;
}

/* ======= BLOCK 4 ======= */
/* ======================================
READINGS BLOCK
====================================== */
.online-service-detail-readings-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ======================================
TITLE
====================================== */
.online-service-detail-readings-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

/* ======================================
ROW
====================================== */
.online-service-detail-readings-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.online-service-detail-readings-row::-webkit-scrollbar {
  display: none;
}

/* ======================================
MINI CARD
====================================== */
.online-service-detail-reading-mini-card {
  min-width: 72px;
  max-width: 72px;
  height: 108px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 8px;
}

/* ======================================
ICON
====================================== */
.online-service-detail-reading-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ======================================
NAME
====================================== */
.online-service-detail-reading-mini-name {
  width: 100%;
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
  line-height: 1.05;
  min-height: 24px;
}

/* ======================================
VALUE
====================================== */
.online-service-detail-reading-mini-value {
  font-size: 12px;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

/* ======================================
STATUS
====================================== */
.online-service-detail-reading-mini-status {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 800;
}

/* ======================================
INFO
====================================== */
.online-service-detail-reading-mini-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ======================================
OK
====================================== */
.online-service-detail-reading-mini-card.ok {
  border-color: #16a34a;
}

.online-service-detail-reading-mini-card.ok
  .online-service-detail-reading-mini-value {
  color: #16a34a;
}

.online-service-detail-reading-mini-status.ok {
  color: #16a34a;
}

/* ======================================
LOW
====================================== */
.online-service-detail-reading-mini-card.low {
  border-color: #e48900;
}

.online-service-detail-reading-mini-card.low
  .online-service-detail-reading-mini-value {
  color: #e48900;
}

.online-service-detail-reading-mini-status.low {
  color: #e48900;
}

/* ======================================
HIGH
====================================== */
.online-service-detail-reading-mini-card.high {
  border-color: #dc2626;
}

.online-service-detail-reading-mini-card.high
  .online-service-detail-reading-mini-value {
  color: #dc2626;
}

.online-service-detail-reading-mini-status.high {
  color: #dc2626;
}

/* ======================================
ICON
====================================== */
.online-service-reading-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.online-service-reading-icon i {
  font-size: 22px;
}

/* ======================================
NAME
====================================== */
.online-service-reading-name {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  color: #64748b;
  line-height: 1.1;
  min-height: 28px;
}

/* ======================================
VALUE
====================================== */
.online-service-reading-value {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: #111827;
}

/* ======================================
STATUS
====================================== */
.online-service-reading-status {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
}

.online-service-reading-status.ok {
  color: #16a34a;
}

.online-service-reading-status.low {
  color: #ea580c;
}

.online-service-reading-status.high {
  color: #dc2626;
}

/* ======= BLOQUE 5 ======= */
/* ======================================
BLOCK 5
PHOTOS
====================================== */

.online-service-detail-photos-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ======================================
HEADER
====================================== */

.online-service-detail-photos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.online-service-detail-photos-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.online-service-detail-photos-count {
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* ======================================
ROW
====================================== */

.online-service-detail-photos-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.online-service-detail-photos-row::-webkit-scrollbar {
  display: none;
}

/* ======================================
THUMB
====================================== */

.online-service-detail-photo-thumb {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.online-service-detail-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ======================================
MODAL
====================================== */

.online-service-detail-gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ======================================
CONTENT
====================================== */

.online-service-detail-gallery-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================
IMAGE
====================================== */

.online-service-detail-gallery-image {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 18px;
  object-fit: contain;
}

/* ======================================
CLOSE
====================================== */

.online-service-detail-gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

/* ======================================
COUNTER
====================================== */

.online-service-detail-gallery-counter {
  position: absolute;
  top: 24px;
  left: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* ======================================
NAV
====================================== */

.online-service-detail-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
}

.online-service-detail-gallery-nav.prev {
  left: 14px;
}

.online-service-detail-gallery-nav.next {
  right: 14px;
}

/* ======================================
PHOTOS HEADER RIGHT
====================================== */

.online-service-detail-photos-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ======================================
BLOCK 6
DOSAGES
====================================== */
.online-service-detail-dosages-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid darkgreen;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ======================================
TITLE
====================================== */
.online-service-detail-dosages-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

/* ======================================
ROW
====================================== */
.online-service-detail-dosage-row {
  padding: 14px 0;
  border-bottom: 2px solid darkgreen;
}

.online-service-detail-dosage-row:last-child {
  border-bottom: none;
}

/* ======================================
TOP
====================================== */
.online-service-detail-dosage-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}

/* ======================================
READING CARD
====================================== */
.online-service-detail-dosage-reading-card,
.online-service-detail-dosage-suggested-card,
.online-service-detail-dosage-empty-card {
  width: 74px;
  height: 122px;
  border-radius: 16px;
  padding: 8px 6px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  flex-shrink: 0;
}

/* ======================================
READING STATUS
====================================== */
.online-service-detail-dosage-reading-card.low {
  border-color: darkorange;
}

.online-service-detail-dosage-reading-card.high {
  border-color: darkred;
}

.online-service-detail-dosage-reading-card.ok {
  border-color: darkgreen;
}

/* ======================================
EMPTY CARD
====================================== */
.online-service-detail-dosage-empty-card {
  border-color: darkgreen;
  background: #f0fdf4;
}

/* ======================================
ICONS
====================================== */
.online-service-detail-dosage-reading-icon,
.online-service-detail-dosage-suggested-icon,
.online-service-detail-dosage-empty-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 6px;
}

/* ======================================
EMPTY ICON
====================================== */
.online-service-detail-dosage-empty-icon {
  background: #dcfce7;
  color: #22c55e;
}

/* ======================================
NAMES
====================================== */
.online-service-detail-dosage-reading-name,
.online-service-detail-dosage-suggested-name,
.online-service-detail-dosage-empty-title {
  width: 100%;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.05;
  color: #64748b;
  min-height: 22px;
  max-height: 22px;
  overflow: hidden;
}

/* ======================================
EMPTY TITLE
====================================== */
.online-service-detail-dosage-empty-title {
  color: #166534;
  min-height: auto;
}

/* ======================================
EMPTY SUBTITLE
====================================== */
.online-service-detail-dosage-empty-subtitle {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  color: #22c55e;
}

/* ======================================
VALUES
====================================== */
.online-service-detail-dosage-reading-value,
.online-service-detail-dosage-suggested-value {
  margin-top: 4px;
  min-height: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  color: #111827;
}

/* ======================================
STATUS
====================================== */
.online-service-detail-dosage-reading-status {
  margin-top: auto;
  min-height: 12px;
  font-size: 12px;
  font-weight: 800;
}

.online-service-detail-dosage-reading-status.low {
  color: darkorange;
}

.online-service-detail-dosage-reading-status.high {
  color: darkred;
}

.online-service-detail-dosage-reading-status.ok {
  color: darkgreen;
}

/* ======================================
ACTION
====================================== */
.online-service-detail-dosage-suggested-action {
  margin-top: auto;
  min-height: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #2563eb;
}

/* ======================================
CENTER
====================================== */
.online-service-detail-dosage-center {
  width: 16px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}

.online-service-detail-dosage-center-icon {
  font-size: 18px;
  line-height: 1;
  color: #f59e0b;
}

.online-service-detail-dosage-center-arrow {
  margin-top: -2px;
  color: darkblue;
  line-height: 1;
}

.online-service-detail-dosage-center-arrow i {
  font-size: 18px;
}

/* ======================================
WHY
====================================== */
.online-service-detail-dosage-why {
  margin-top: 12px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid darkgreen;
  padding: 10px;
}

.online-service-detail-dosage-why-title {
  font-size: 11px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.online-service-detail-dosage-why-text {
  font-size: 12px;
  line-height: 1.3;
  color: #64748b;
}

/* ======================================
READING WRAPPER
====================================== */
.online-service-detail-dosage-reading-wrapper {
  width: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.online-service-detail-dosage-suggested-wrapper {
  width: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

/* ======================================
READING LABEL
====================================== */
.online-service-detail-dosage-reading-label {
  width: 100%;
  margin-bottom: 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.1;
}

/* ======================================
SUGGESTED LABEL
====================================== */
.online-service-detail-dosage-suggested-label {
  margin-bottom: 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.1;
}

/* ======================================
TECH WRAPPER
====================================== */
.online-service-detail-tech-wrapper {
  display: flex;
  align-items: stretch;
  gap: 30px;
  margin-left: 4px;
  flex-shrink: 0;
  padding-left: 15px;
}

/* ======================================
DIVIDER
====================================== */
.online-service-detail-tech-divider {
  width: 3px;
  background: darkgreen;
  border-radius: 999px;
  align-self: stretch;
}

/* ======================================
CONTENT
====================================== */
.online-service-detail-tech-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ======================================
LABEL
====================================== */
.online-service-detail-tech-label {
  width: 100%;
  margin-bottom: 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ======================================
SELECTOR
====================================== */
.online-service-detail-tech-selector {
  width: 58px;
  height: 122px;
  border-radius: 16px;
  border: 1px solid #dbe3ee;
  background: #f8fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  flex-shrink: 0;
}

/* ======================================
BUTTON
====================================== */
.online-service-detail-tech-btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.online-service-detail-tech-btn:active {
  transform: scale(0.95);
}

/* ======================================
AMOUNT
====================================== */
.online-service-detail-tech-amount {
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
  word-break: break-word;
  padding: 0 4px;
}

/* ======================================
TECH EMPTY
====================================== */
.online-service-detail-tech-empty {
  width: 58px;
  height: 122px;
  border-radius: 16px;
  border: 1px solid #dbeafe;
  background: #f8fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 4px;
}

/* ======================================
ICON
====================================== */
.online-service-detail-tech-empty-icon {
  font-size: 18px;
  color: #22c55e;
}

/* ======================================
TEXT
====================================== */
.online-service-detail-tech-empty-text {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  color: #64748b;
}

/* ======================================
BLOCK 7
RESPONSE
====================================== */

.online-service-response-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ======================================
TITLE
====================================== */

.online-service-response-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

/* ======================================
SECTION
====================================== */

.online-service-response-section {
  margin-bottom: 14px;
}

/* ======================================
SECTION HEADER
====================================== */

.online-service-response-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

/* ======================================
SECTION TITLE
====================================== */

.online-service-response-section-title {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.4px;
}

/* ======================================
GENERATED
====================================== */

.online-service-response-generated {
  background: #f8fafc;
  border-radius: 16px;
  padding: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #111827;
  border: 1px solid #e5e7eb;
}

/* ======================================
TEXTAREA
====================================== */

.online-service-response-textarea {
  width: 100%;
  min-height: 110px;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  padding: 12px;
  font-size: 14px;
  line-height: 1.4;
  resize: none;
  outline: none;
  font-family: inherit;
  background: #fff;
}

.online-service-response-textarea:focus {
  border-color: #2563eb;
}

/* ======================================
PREVIEW
====================================== */

.online-service-response-preview {
  background: #eff6ff;
  border-radius: 16px;
  padding: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #1e293b;
  border: 1px solid #bfdbfe;
  min-height: 90px;
}

/* ======================================
BUTTON
====================================== */

.online-service-response-send-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 16px;
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

/* ======================================
SWITCH
====================================== */

.online-service-response-switch {
  position: relative;
  width: 48px;
  height: 28px;
  display: inline-block;
}

.online-service-response-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.online-service-response-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  transition: 0.2s;
}

.online-service-response-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}

.online-service-response-switch
  input:checked
  + .online-service-response-slider {
  background: #2563eb;
}

.online-service-response-switch
  input:checked
  + .online-service-response-slider::before {
  transform: translateX(20px);
}

/* ======================================
BLOCK 8 - STATUS FLOW
====================================== */

.online-service-status-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ======================================
TITLE
====================================== */

.online-service-status-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.online-service-status-title i {
  color: #2563eb;
  font-size: 16px;
}

/* ======================================
CURRENT
====================================== */

.online-service-status-current-label {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.online-service-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
}

/* ======================================
BADGE COLORS
====================================== */

.online-service-status-badge.pending {
  background: #fef3c7;
  color: #92400e;
}

.online-service-status-badge.reviewing {
  background: #dbeafe;
  color: #1d4ed8;
}

.online-service-status-badge.waiting_customer {
  background: #ede9fe;
  color: #6d28d9;
}

.online-service-status-badge.completed {
  background: #dcfce7;
  color: #166534;
}

.online-service-status-badge.cancelled {
  background: #fee2e2;
  color: #b91c1c;
}

/* ======================================
FLOW
====================================== */

.online-service-status-flow {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ======================================
ITEM
====================================== */

.online-service-status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.45;
  transition: all 0.2s ease;
}

.online-service-status-item.active {
  opacity: 1;
}

/* ======================================
DOT
====================================== */

.online-service-status-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
}

.online-service-status-item.active .online-service-status-dot {
  background: #2563eb;
  color: #fff;
}

/* ======================================
NAME
====================================== */

.online-service-status-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

/* ======================================
BLOCK 9 - ACTIVITY TIMELINE
====================================== */

.online-service-timeline-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ======================================
TITLE
====================================== */

.online-service-timeline-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.online-service-timeline-title i {
  color: #2563eb;
  font-size: 16px;
}

/* ======================================
LIST
====================================== */

.online-service-timeline-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ======================================
ITEM
====================================== */

.online-service-timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* ======================================
LINE
====================================== */

.online-service-timeline-line {
  position: absolute;
  top: 42px;
  left: 18px;
  width: 2px;
  bottom: -24px;
  background: #e2e8f0;
}

/* ======================================
DOT
====================================== */

.online-service-timeline-dot {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  position: relative;
  z-index: 2;
  background: #fff;
}

/* ======================================
CONTENT
====================================== */

.online-service-timeline-content {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

/* ======================================
TOP
====================================== */

.online-service-timeline-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

/* ======================================
EVENT
====================================== */

.online-service-timeline-event {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

/* ======================================
TIME
====================================== */

.online-service-timeline-time {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  white-space: nowrap;
  padding-top: 1px;
}

/* ======================================
DESCRIPTION
====================================== */

.online-service-timeline-description {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.4;
  color: #64748b;
  word-break: break-word;
}

/* ======================================
ACTOR
====================================== */

.online-service-timeline-actor {
  margin-top: 7px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
}

.online-service-timeline-actor i {
  font-size: 12px;
  color: #64748b;
}

/* ======================================
HOVER
====================================== */

.online-service-timeline-item:hover .online-service-timeline-dot {
  transform: scale(1.04);
  transition: all 0.2s ease;
}

/* ======================================
MOBILE
====================================== */

@media (max-width: 480px) {
  .online-service-timeline-top {
    flex-direction: column;
    gap: 4px;
  }

  .online-service-timeline-time {
    padding-top: 0;
  }

  .online-service-timeline-description {
    font-size: 12px;
  }
}

/* ======================================
BLOCK 10 - INTERNAL NOTES
====================================== */

.online-service-internal-notes-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ======================================
TITLE
====================================== */

.online-service-internal-notes-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.online-service-internal-notes-title i {
  color: #64748b;
  font-size: 16px;
}

/* ======================================
WARNING
====================================== */

.online-service-internal-notes-warning {
  margin-top: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
}

/* ======================================
INPUT WRAPPER
====================================== */

.online-service-internal-notes-input-wrapper {
  margin-top: 14px;
}

/* ======================================
TEXTAREA
====================================== */

.online-service-internal-notes-textarea {
  width: 100%;
  min-height: 100px;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  padding: 12px;
  font-size: 14px;
  line-height: 1.45;
  resize: none;
  outline: none;
  background: #fff;
  font-family: inherit;
}

.online-service-internal-notes-textarea:focus {
  border-color: #64748b;
}

/* ======================================
BUTTON
====================================== */

.online-service-internal-notes-btn {
  margin-top: 10px;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 16px;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.online-service-internal-notes-btn:active {
  transform: scale(0.98);
}

/* ======================================
LIST
====================================== */

.online-service-internal-notes-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ======================================
EMPTY
====================================== */

.online-service-internal-notes-empty {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  background: #f8fafc;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}

/* ======================================
ITEM
====================================== */

.online-service-internal-note-item {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 12px;
  background: #f8fafc;
}

/* ======================================
TOP
====================================== */

.online-service-internal-note-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ======================================
AUTHOR
====================================== */

.online-service-internal-note-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.online-service-internal-note-author i {
  color: #64748b;
}

/* ======================================
DATE
====================================== */

.online-service-internal-note-date {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
}

/* ======================================
TEXT
====================================== */

.online-service-internal-note-text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #334155;
  word-break: break-word;
}

/* ======================================
BLOCK 11 - RESPONSE ACTIONS
====================================== */

.online-service-actions-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ======================================
TITLE
====================================== */

.online-service-actions-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.online-service-actions-title i {
  color: #2563eb;
  font-size: 16px;
}

/* ======================================
GRID
====================================== */

.online-service-actions-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ======================================
BUTTON
====================================== */

.online-service-action-btn {
  min-height: 92px;
  border: none;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.online-service-action-btn:active {
  transform: scale(0.98);
}

.online-service-action-btn i {
  font-size: 24px;
}

/* ======================================
PRIMARY
====================================== */

.online-service-action-btn.primary {
  background: #dbeafe;
  color: #1d4ed8;
}

/* ======================================
WARNING
====================================== */

.online-service-action-btn.warning {
  background: #fef3c7;
  color: #b45309;
}

/* ======================================
PURPLE
====================================== */

.online-service-action-btn.purple {
  background: #ede9fe;
  color: #7c3aed;
}

/* ======================================
SUCCESS
====================================== */

.online-service-action-btn.success {
  background: #dcfce7;
  color: #15803d;
}

/* ======================================
CLOSED
====================================== */

.online-service-actions-closed {
  margin-top: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.online-service-action-btn.danger {
  background: #fee2e2;

  color: #dc2626;
}

.online-service-action-btn.danger i {
  color: #dc2626;
}
