/* ===== Standalone Reservation Modal ===== */

.st-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    display: none;
  }
  
  .st-modal-content {
    background:#fff;
    padding:20px;
    border-radius:6px;
    max-width:1000px;  
    width:93%;         
    position:relative;
    text-align:center;
    box-shadow:0 4px 20px rgba(0,0,0,.2);
  }
  .st-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
  }
  
  .st-modal-close:hover {
    color: #000;
  }
  
  .st-step {
    margin-top: 10px;
  }
  
  .st-step label {
    font-weight: 600;
    display: block;
    margin-bottom: .5em;
  }
  
  #st-car-plate {
    width: 100%;
    padding: .6em .8em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
  }
  
  #st-next-btn {
    margin-top: 1em;
    display: inline-flex;
    align-items: center;
    gap: .5em;
    padding: .6em 1em;
    border: 0;
    border-radius: 6px;
    background: #E1612A;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
  }
  
  #st-next-btn:hover {
    background: #c44f20;
  }
  
  #st-plate-error {
    font-size: 14px;
    color: #c0392b;
    margin-top: .5em;
  }
  
  #st-location-select {
    width: 100%;
    margin: .5em 0;
    padding: .5em;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  #st-calendar-container {
    height: auto;
    margin-top: 10px;
  }
  
  #st-success {
    display: none;
    font-size: 16px;
    font-weight: bold;
    color: green;
    margin-top: 15px;
  }
  .st-step-user
  {
    max-width:500px;
    margin:0 auto;
  }

 
  #select2-st-location-select-container
  {
color:#000;border: 1px solid #bbbbbb;    text-align: left;
  }
  .st-step.st-step-user label {
    margin: 13px 0;
}

@media (max-width:767px){

   #st-dateModal .st-modal-content {
        width:90% !important;
    }
    #st-dateModal .reg-main-labels
    {
        font-size:16px;
    }
    #st-calendar-container{
      	height:643px !important;
    }
}
 