/* -------------------------------------------------------------------
   RECENT ORDERS COMPONENT STYLING
------------------------------------------------------------------- */

.cust-section-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 43, 92, 0.04);
  margin-bottom: 2rem;
}

.cust-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.cust-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f2b5c;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cust-section-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.cust-section-link:hover {
  text-decoration: underline;
}

.recent-orders-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recent-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.recent-order-item:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateX(3px);
}

.order-item-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.order-id-txt {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f2b5c;
}

.order-service-txt {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.order-date-txt {
  font-size: 0.75rem;
  color: #64748b;
}

.order-item-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.order-item-right i {
  font-size: 1.25rem;
  color: #94a3b8;
}

.cust-empty-box {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #64748b;
}

.cust-empty-box i {
  font-size: 2.5rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  display: block;
}
