.bs-booking-steps {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.bs-booking-steps .card{
  border:1px solid rgb(51, 51, 51) !important;
  width:100%;
}
.row.equal-height > [class*='col-'] {
      display: flex;
      align-items: stretch;
    }
.bs-step { display: none; }
.bs-step.active { display: block; }
.service-card, .staff-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.next-step, .btn-success,.prev-step { background: #eacabb !important; color: #fff; border: none; border-radius: 4px; padding: 10px 15px; cursor: pointer; }
.next-step:hover , .btn-success:hover, .prev-step:hover { background: rgba(234, 202, 187, 0.8); opacity: 0.6; }
.service-card:hover, .staff-card:hover { background: #f9f9f9; }
.service-card.selected, .staff-card.selected { border-color: #0073aa; background: #e9f6ff; }
#client-form{
  background-color: #fff !important;
}
#client-form input, #client-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #69727d;
  border-radius: 4px;
}
.container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;    /* Centers vertically */
  min-height: 100vh;      /* Example: takes full viewport height */
  /* Or a specific height if centering within a smaller div */
  /* height: 400px; */
  border: 1px solid #ccc; /* For visualization */
}

.loader {
  /* Styles for your loader container */
  width: 50px;
  height: 50px;
  /* Add other styling for your loader, e.g., background, border-radius */
}

.spinner {
  /* Your specific CSS animation for the spinner */
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite; /* Example animation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.btnBoooking,.btnBoookingService {
  background-color: rgba(79, 104, 83, 1) !important;
  color:#fff;
}

.btnBoooking:hover,.btnBoookingService:hover {
  opacity: 0.6;
}
.priceService{
  background-color: rgba(79, 104, 83, 0.2) !important;
  color: rgb(79, 104, 83) !important;
}