body {
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}
h1 {
  font-size: 60px;
}
h1 span {
  font-size: 15px;
  background-color: black;
  color: white;
  padding: 5px;
  text-wrap: nowrap;
}
.start-btn {
    background-color: white;
    border: 2px solid black;
    color: black;
    font-size: 25px;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 5px 1px black;
  }
  .start-btn:hover {
    background-color: black;
    color: white;
  }
button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
  }

  input {
    border: 2px solid grey;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 10px;
  }
  select{
    border: 2px solid grey;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 10px;
  }
  
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  select.without-icon {
    appearance: none;
    background-image: url(''); /* Add your custom arrow image URL here */
}

.ticket {
  width: 278px;
  text-align: center;
  background-color: white;
  border: 2px dashed black;
  padding: 10px;
  margin: 10px;
}
.t-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qr img {
  width: 50%;
}
.t-h {
  display: flex;
  justify-content: center;
  align-items: center;
}
.t-h h2 {
  font-size: 15px;
}
.t-h img {
  width: 25px;
  height: 25px;
}
.t-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.t-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.date-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}







/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* Centered vertically */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Adjust as needed */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
table{
    width: 100%;
}