/* ==========================================
   SERVICE FLOW UI SYSTEM
   ========================================== */

.service-buttons {
  background: #000;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #4f46e5;
}
.service-buttons .btn,
.service-buttons button {
  min-width: 200px;
  padding: 22px 26px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Section titles */
.service-buttons .service-section-title {
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

/* Loading state */
.service-buttons .service-loading {
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* Layout rows */
.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================
   BASE BUTTON STYLE
   ========================================== */

.service-buttons .btn {
  min-width: 150px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  background-color: rgba(255,255,255,0.04);
}

/* ==========================================
   BENCH BUTTONS (Level 1)
   ========================================== */

.service-buttons .btn-outline-primary {
  color: #4f46e5;
  border: 2px solid #4f46e5;
  background-color: rgba(79, 70, 229, 0.05);
}

.service-buttons .btn-outline-primary:hover {
  background-color: #4f46e5;
  color: #fff;
  box-shadow: 0 0 12px rgba(79, 70, 229, 0.4);
}

.service-buttons .btn-outline-primary:active {
  background-color: #4338ca;
  border-color: #4338ca;
}

/* ==========================================
   SERVICE TYPE BUTTONS (Level 2)
   ========================================== */

.service-buttons .btn-outline-secondary {
  color: #9ea4c9;
  border: 2px solid #555;
}

.service-buttons .btn-outline-secondary:hover {
  background-color: #333;
  color: #fff;
}

/* ==========================================
   WORK ITEM BUTTONS (Level 3)
   ========================================== */

.service-buttons button {
  min-width: 150px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  background-color: rgba(255,255,255,0.04);
}

/* WORK ITEM BUTTONS (Actual class: btn-outline-dark) */

.service-buttons .btn-outline-dark {
  border: 2px solid #28a745 !important;
  color: #28a745 !important;
  background-color: rgba(40,167,69,0.05) !important;
}

.service-buttons .btn-outline-dark:hover {
  background-color: #28a745 !important;
  color: #fff !important;
}