/* CUSTOMER ONLINE SERVICES LIST */
.customer-online-services-list-page {
  padding: 16px;
  padding-bottom: 120px;
}

/* HEADER */
.customer-online-services-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.customer-online-services-list-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.customer-online-services-list-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

.customer-online-services-list-add-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: #2563eb;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ACTIVE REQUEST */
.customer-online-services-list-active-card {
  background: #fef3c7;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.customer-online-services-list-active-left {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #f59e0b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.customer-online-services-list-active-content {
  flex: 1;
}

.customer-online-services-list-active-title {
  font-size: 14px;
  font-weight: 700;
  color: #92400e;
}

.customer-online-services-list-active-subtitle {
  font-size: 12px;
  color: #a16207;
  margin-top: 3px;
}

.customer-online-services-list-active-btn {
  border: none;
  background: #f59e0b;
  color: white;
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

/* FILTERS */
.customer-online-services-list-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 18px;
  padding-bottom: 4px;
}

.customer-online-services-list-filter {
  border: none;
  background: #eef2ff;
  color: #4f46e5;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.customer-online-services-list-filter i {
  font-size: 14px;
}

/* FILTER ICON COLORS */
.customer-online-services-list-filter[data-filter='all'] i {
  color: yellow;
}

.customer-online-services-list-filter[data-filter='pending'] i {
  color: #06b6d4;
}

.customer-online-services-list-filter[data-filter='waiting_customer'] i {
  color: #f59e0b;
}

.customer-online-services-list-filter[data-filter='completed'] i {
  color: #22c55e;
}

.customer-online-services-list-filter[data-filter='cancelled'] i {
  color: #ef4444;
}

.customer-online-services-list-filter.active {
  background: #2563eb;
  color: white;
}

/* CARD */
.customer-online-services-list-card {
  background: white;
  border-radius: 24px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.customer-online-services-list-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.customer-online-services-list-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.customer-online-services-list-card-date {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}

.customer-online-services-list-card-message {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;

  word-break: break-word;
  overflow-wrap: break-word;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

.customer-online-services-list-card {
  overflow: hidden;
}

.customer-online-services-list-card-footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.customer-online-services-list-card-tech {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* STATUS */
.customer-online-services-list-status {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.customer-online-services-list-status.pending {
  background: #dbeafe;
  color: #2563eb;
}

.customer-online-services-list-status.waiting_customer {
  background: #fef3c7;
  color: #d97706;
}

.customer-online-services-list-status.completed {
  background: #dcfce7;
  color: #16a34a;
}

.customer-online-services-list-status.cancelled {
  background: #fee2e2;
  color: #dc2626;
}

/* EMPTY */
.customer-online-services-list-empty {
  padding-top: 70px;
  text-align: center;
}

.customer-online-services-list-empty-icon {
  font-size: 52px;
  color: #cbd5e1;
}

.customer-online-services-list-empty-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.customer-online-services-list-empty-subtitle {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}

/* HELPERS */
.hidden {
  display: none !important;
}

.customer-online-services-list-credits-card {
  margin-bottom: 14px;
}

.customer-online-services-credits-inner {
  border-radius: 18px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.customer-online-services-credits-inner.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.customer-online-services-credits-inner.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.customer-online-services-credits-inner.danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.customer-online-services-credits-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.customer-online-services-credits-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

.customer-online-services-credits-title {
  font-size: 15px;
  font-weight: 700;
}

.customer-online-services-credits-subtitle {
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.9;
}

.customer-online-services-credits-badge {
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 700;
}
