body {
    background-image: url('../img/bg.jpg'); /* Your existing background image */
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

i {
  font-size: 30px;
  color: #515151;
  margin: 10px;
}
.main {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding-left: 100px;
    padding-right: 100px;
}

.iner{
  margin-top: 40px;
  margin-bottom: 40px;
}

.logo {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

/* form */
#regForm {
    margin: auto;
 
  }
  .col {
    width: 50%;
    color: #FFFFFF;
  }
  .col p {
    width: 75%;
  }
  .step1 .feild {
    display: flex;
    gap: 30px;
  }
  h1 {
    text-align: center;  
  }
  h2 {
    font-size: 54px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
  }
  h3 {
    font-size: 18px;
    font-weight: 500;
  }
  p {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
  }
  .step1 {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  input {
    padding-left: 20px;
    padding-right: 20px;
    width: -webkit-fill-available !important;
    height: 50px;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    border: none;
    font-weight: normal;
    color: #515151;
    font-family: "Rubik", sans-serif;
    outline: none;
  }
  .time_slot_select {
    padding-left: 20px;
    padding-right: 20px;
    width: -webkit-fill-available !important;
    height: 50px;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    border: none;
    font-weight: normal;
    color: #515151;
    font-family: "Rubik", sans-serif;
    outline: none;
  }

  select option:disabled {
    color: gray;
    background-color: #f0f0f0;
  } 
  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #ffdddd;
  }
  
  /* Hide all steps by default: */
  .tab {
    display: none;
  }
  
  button {
    background-color: #BF8650;
    color: #ffffff;
    border: none;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
  }
  
  
  #prevBtn {
    background-color: #bbbbbb;
  }
  
  /* Make circles that indicate the steps of the form: */
  .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;  
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }
  
  .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-color: #04AA6D;
  }
/* form-end */

/* step2 */
.step2 {
  display: flex;
  gap: 40px;
}
.colimg {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border: 1px solid white;
  border-radius: 10px;
}
label {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
}

.app-time {
  border: 1px solid #fff;
  padding: 20px 30px;
  box-shadow: 2px 4px 10px 0px #c7cacce3;
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 40px;
  height: 20px;
  width: 20px;
  transition: all 0.15s ease-out 0s;
  background: #fff;
  border: 1px solid #999;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.option-input:hover {
  background: #e5e7eb;
}
.option-input:checked {
  border: 1px solid #fff;
}
.option-input:checked::before {
  color: #d9486d;
  height: 40px;
  width: 40px;
  position: absolute;
  content: "✔";
  display: inline-block;
  font-size: 12px;
  left: 4px;
  line-height: 20px;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: "";
  display: block;
  position: relative;
  z-index: 100;
}

.option-input.radio {
  border-radius: 50%;
}
.option-input.radio::after {
  border-radius: 50%;
}
.app-check {
  display: flex;
}
.app-border {
  border: 1px solid #ece9e9;
  border-radius: 7px;
  padding: 5px 7px 5px 9px;
  padding-left: 40px;
  min-height: 30px;
}

.option-input.radio:checked + .app-border {
  background: #d9486d;
}
.option-input.radio:disabled,
.option-input.radio:disabled + .app-border {
  cursor: not-allowed;
  opacity: 0.6;
}
.app-label {
  position: relative;
  top: 5px;
  margin-right: 10px;
}


.time-slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  background-color: white;
  border-radius: 4px;
  margin-top: 15px;
  padding: 25px;
  height: 130px;
  overflow-y: scroll;
}
.time-slots-edit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  background-color: white;
  border-radius: 4px;
  margin-top: 15px;
  padding: 25px;
  height: 130px;
  overflow-y: scroll;
}

.time-slot {
  padding: 10px;
  width: 80px;
  border: 1px solid #515151;
  color: #515151;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  height: fit-content;
  transition: background-color 0.3s, color 0.3s;
}

.time-slot-disable {
  background-color: #e0e0e0 !important;
  color: #bbbbbb;
  cursor: not-allowed;
  border: 1px solid #5151514a !important;
}

.time-slot:hover {
  background-color: #f0f0f0;
}

.time-slot.active {
  background-color: #BF8650;
  color: white;
}

/* step2-end */

/* step3 */
.step3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.selectioncolors {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.selectioncolors > div {
  width: 170px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
}
.valt {
  background-color: white; 
  color: black; padding: 2px; 
  height: 50px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.floorchart {
  background-color: #F1E3DA;
  padding: 50px;
  border-radius: 6px;
  margin-top: 20px;
}

.tables {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
}
.roundedtables {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  margin-top: 70px;
  margin-bottom: 70px;
}
.widetables {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
}

.main-table {
  text-align: center;
}
.main-table2 {
  text-align: center;
}
.main-table3 {
  text-align: center;
}
.innertable {
  display: flex;
}
.chairs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.table {
  width: 200px;
  height: 250px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: white;
  font-weight: bold;
  background-color: #05480C;
  cursor: pointer;
  transition: background-color 0.3s;
}
.main-table2 .table {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: white;
  font-weight: bold;
  background-color: #05480C;
  cursor: pointer;
  transition: background-color 0.3s;
}
.main-table3 .table {
  width: 250px;
  height: 200px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: white;
  font-weight: bold;
  background-color: #05480C;
  cursor: pointer;
  transition: background-color 0.3s;
}
.disabled {
  background-color: #A1A1AB !important;
}
.table.active {
  background-color: #FE990E;
}

/* The Modal (background) */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  padding-top: 130px; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.9); 
}

.modal img {
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}
.modal .floor-plan {
  width: 320px;
}
.modal .headline h2 {
  font-size: 12px;
}
.modal .portrait img{
  height: 30px;
}
.modal .landscape img{
  width: 30px;
}
/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption { 
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* step3-end */

/* step4 */
.step4 {
  display: flex;
  gap: 40px;
}
.reservation-detail {
  background-color: white;
  padding: 25px;
  border-radius: 4px;
}
.reservation-detail ul li{
  font-weight: bold;
  color: #515151;
  margin-top: 15px;
}
.reservation-detail span{
  font-weight: normal;
}
.step4 a{
  background-color: #BF8650;
  color: white;
  border-radius: 4px;
  padding: 10px;
  text-decoration: none;
}
/* step4-end */

footer {
    text-align: center;
    color: white;
    font-size: 16px;
    border-top: 1px solid white;
    width: 100%;
}

/* floor_plan */
.portrait img{
  height: 70px;
}
.landscape img{
  width: 70px;
}
.selected {
  padding: 5px;
  border-radius: 4px;
  background-color: #FE990E;
  border: none;
}
.available {
  padding: 5px;
  border-radius: 4px;
  background-color: #c8e3c8;
  border: none;
  margin: 2px;
}
.choosen-slot {
  padding: 5px;
  border-radius: 4px;
  background-color: #FE990E;
  border: none;
  margin: 2px;
}
.available-slot {
  background-color: #c8e3c8;
}
.selected-slot {
  background-color: #FE990E;
}
.booked-slot {
  background-color: #fbd9d3;
}
.legend button {
  padding-left: 10px;
  padding-right: 10px;
}
.booked {
  padding: 5px;
  border-radius: 4px;
  background-color: #e3d8b8;
  border: none;
}
.legend {
  margin-bottom: 20px;
}
.floormain {
  margin-top: 10px;
}
.floor-plan {
  display: flex;
  justify-content: space-between;
  width: 500px;
  margin: auto;
  gap: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}
#myModal .container {
  width: 80%;
  margin: auto;
}
.col1 {
  width: 47%;
  display: flex;
  gap: 8px;
  flex-direction: column;
  justify-content: space-between;
}
.col2 {
  width: 50%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 8px;
}
.headline {
  padding: 20px;
  border-left: 2px dashed;
  border-right: 2px dashed;
  border-bottom: 2px dashed;
}
.headline h2 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.entrance img {
  max-width: 85px;
}
.largetables {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-left: 2px dashed;
  border-right: 2px dashed;
  border-top: 2px dashed;
}
.tablerow {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  align-items: center;
}
.tablerow2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}
.subtbl1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
}
.subtbl2 {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
.sub {
  display: flex;
  gap: 4px;
}
.multifeild {
  width: 110% !important;
}
.multifeild input {
  width: 100% !important;
}
/* floor_plan_end */


/* confirmation popup */
#customConfirmBtn {
  background-color: #BF8650;
  color: #ffffff;
  border: none;
  height: 50px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

#customPopupModal p{
  color: #515151;
  font-weight: bold;
}
.custom-modal {
  display: none;
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.5);
}
.custom-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 500px;
  border-radius: 10px;
}

.custom-close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.custom-close-btn:hover,
.custom-close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.conf-btns {
  display: flex;
  gap: 10px;
}
/* end */

/* mobile */
@media (max-width: 1269px) {
  .step1 .feild {
    flex-direction: column;
  }
  .multifeild {
    width: 100% !important;
  }
}
@media (max-width: 1024px) {
    .step1 {
        flex-direction: column;
        gap: 30px;
    }
    .step2 {
      flex-direction: column;
      gap: 30px;
    }
    .step3 {
      flex-direction: column;
      gap: 30px;
    }
    .step4 {
      flex-direction: column;
      gap: 30px;
    }
    .col {
        width: 100%;
    }
}
@media (max-width: 820px) {
  .multifeild {
     width: 100% !important;
   }
}
@media (max-width: 767px) {
    .main {
        padding-left: 30px;
        padding-right: 30px;
    }
    .logo img {
        width: 260px;
    }
     .step1 .feild {
        flex-direction: column;
    }
    input {
        width: auto;
    }
    h2 {
        font-size: 40px;
    }
    .col p {
      width: 100%;
    }
    .step4 h2{
      text-align: center;
    }
    .step4 h2 span{
      font-size: 80px;
      width: 100%;
      display: block;
    }
    .step4 p{
      text-align: center;
    }
    .backbtn {
      text-align: center;
    }
}

@media (max-width: 600px) {
  .floor-plan {
    width: 350px;
  }
  .portrait img{
    height: 40px;
  }
  .landscape img{
    width: 40px;
  }
  .headline h2 {
    font-size: 12px;
  }
  .entrance img {
    max-width: 50px;
  }

}

@media (max-width: 469px) {
  .time-slots {
    gap: 10px;
  }
  .time-slots-edit {
    gap: 10px;
  }
  .time-slot {
    font-size: 12px;
    padding: 5px;
    width: 60px;
  }
  .selectioncolors > div {
    width: 110px;
    height: 40px;
    font-size: 12px;
  }
  .floorchart {
    padding: 20px;
  }
  .table {
    width: 150px;
    height: 200px;
  }
  .main-table3 .table {
    width: 150px;
    height: 120px;
  }
  i {
    font-size: 20px;
  }
  .modal .floor-plan {
    width: 260px;
  }
  .floor-plan {
    width: auto;
    gap: 10px;
    padding: 10px;
  }
  .portrait img{
    height: 40px;
  }
  .landscape img{
    width: 40px;
  }
  .entrance img {
    max-width: 40px;
  }
  .available {
    padding: 4px;
  }
  .selected {
    padding: 4px;
  }
  .booked {
    padding: 4px;
  }
}