
  /* Background blur effect */
  .booking-bg {
    background: url('../../assets/img/border.png') center/cover no-repeat fixed;
    min-height: 150vh;
    display: flex;
    align-items: flex-start;   
    justify-content: center;
    padding-top: 10px;        
    position: relative;
  }


  .booking-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85); 
    z-index: 0;
    height: 150vh;
  }

  .booking-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    height: 950px;
  }

  .booking-card:hover {
    transform: translateY(-3px);
  }

  .form-control, .form-select {
    border-radius: 12px !important;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 15px;
  }

  .form-control:focus, .form-select:focus {
    border-color: #a93332;
    box-shadow: 0 0 0 0.25rem rgba(169,51,50,0.25);
  }

  .btn-danger {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(169,51,50,0.3);
    transition: all 0.3s ease;
  }

  .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(169,51,50,0.4);
  }

  #loader {
    padding: 40px 20px;
  }

.booking-card {
  animation: fadeInUp 0.7s ease both;
}

#terms{
  width: 20px;
  height: 20px;
  border: 1px solid #a93332;
}

#dateButtons .btn, #timeButtons .btn {
  border-radius: 12px;
  padding: 10px 18px;
  transition: all 0.2s ease;
}

#dateButtons .btn.active, #timeButtons .btn.active {
  background-color: #a93332;
  color: #fff;
  box-shadow: 0 0 8px rgba(169,51,50,0.5);
}

.select2-container--default .select2-selection--single {
    height: 38px !important;               
    font-size: 1rem;                        
    line-height: 100px !important;                      
    border: 1px solid #d4d8dd !important;               
    border-radius: 0.65rem !important;                
    background-color: #fff;
    display: flex;
    align-items: center;
}

/* Strelica dropdowna */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
}

/* Opcije unutar dropdowna */
.select2-container .select2-results__option {
    padding: 6px 12px;
    display: flex;
    align-items: center;
}

/* Slike unutar opcija (veće) */
.select2-container .select2-results__option img {
    width: 50px;                             /* veće ikonice */
    height: 28px;
    margin-right: 5px;
    vertical-align: middle;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 2px;
}

/* Slika kod odabrane opcije (veća i centrirana) */
.select2-container .select2-selection--single .select2-selection__rendered img {
    width: 50px;
    height: 28px;
    margin-right: 5px;
    vertical-align: middle;
}

.brand-text {
    font-weight: 600;
    color: #212529;
    font-size: 1rem;
    vertical-align: middle;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------
   STEP LENTA
--------------------------- */
.service-card{
  cursor:pointer;
  transition:0.2s;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.service-card.active{
  border:2px solid #a93332;
  background:#f8eaea;
}

.time-card{
  padding:15px 14px;
  border:1px solid #ddd;
  cursor:pointer;
  width: 500px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.time-card.active{
  border:2px solid #a93332;
  background:#f8eaea;
}

#activeDate{
  font-size: 1.2rem;
  padding: 7px 50px;
  background-color: rgb(169, 52, 50);
  color: #fff;
}

.next-btn{
  width: 500px;
}

.prev-btn{
  width: 500px;
}

#submitBtn{
  width: 500px;
}

.personal-info{
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.step-content{margin-top:20px}
.service-card{cursor:pointer;transition:.2s}
.service-card.active{border:2px solid #a93332;background:#f8eaea}
.time-card{padding:10px 14px;margin:6px;border-radius:12px;border:1px solid #ddd;cursor:pointer}
.time-card.active{border:2px solid #a93332;background:#f8eaea}
.slider-track{width:200px;height:10px;background:#ddd;border-radius:5px;position:relative;margin:auto}
.slider-thumb{width:20px;height:20px;background:#a93332;border-radius:50%;position:absolute;top:-4px;}

