@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* max-height: 100vh;
    height: 100vh; */

    /* background-image: url('../images/restaurant-background-small.jpg'); */
    background-image: url('../images/restaurant_background_2_expanded_small_cropped.jpg');
    background-size: cover;
    background-position: center;

    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Poppins', sans-serif;
}

html, body {
    touch-action: manipulation;
  }

  * {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

.blur-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(10px); /* Adjust the blur amount as needed */
    -webkit-backdrop-filter: blur(10px); /* Adjust the blur amount as needed */
    background-color: rgba(255, 255, 255, 0.3);
}

.centered-div {
    text-align: center;
    /* padding: 20px; */
    /* border: 1px solid #ccc; */
    border-radius: 20px;
    /* max-height: 80vh; */
    max-height: calc(80vh - 50px);
    margin-top: -70px;
    /* max-height: calc(80vh - 50px); */
    width: 90%;
    max-width: 400px;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.8);
    /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */

    z-index: 1;

    background: #ffffffdf;
    border: 4px solid rgba(225,225,225,0.10);
    box-shadow: 0 0 8px 2px rgba(92,92,92,0.46), inset 0px 0px 0px 0 rgba(193,193,193,0.50);
    -webkit-box-shadow: 0 0 8px 2px rgba(92,92,92,0.46), inset 0px 0px 0px 0 rgba(193,193,193,0.50);
    border-radius: 30px;

    padding-top: 20px;
    /* padding-bottom: 20px; */

    background-color: rgba(255, 255, 255, 1);
}

h1,h2,h3,h4,h5,h6,p {
    margin: auto;
}

h2 {
    font-weight: 500;
    font-size: 40px;
    color: #2386C6;
    text-align: center;
}

h3 {
    font-weight: 500;
    font-size: 22px;
    color: #2386C6;
    text-align: center;
}

h4 {
    font-weight: 500;
    font-size: 18px;
    color: #2386C6;
    text-align: center;
}

p {
    font-weight: 500;
    font-size: 18px;
    color: #2386C6;
    text-align: center;
}

button,
input,
textarea {
    /* Resetting margin and padding */
    margin: 0;
    padding: 0;

    /* Resetting border and outline */
    border: none;
    outline: none;

    /* Resetting background and text color */
    background-color: transparent;
    color: inherit;

    /* Resetting font properties */
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;

    /* Resetting cursor style */
    cursor: pointer;

    /* Resetting box-sizing to ensure consistent sizing */
    box-sizing: border-box;
}


input {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #F8F8F8;
    border: 1px solid #DDDDDD;
    border-radius: 14px;
    font-weight: 600;
    font-size: 18px;
    color: #575757;
    text-align: center;

    width: 90%;
    max-width: 260px;
     height: 44px;
}

textarea {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #F8F8F8;
    border: 1px solid #DDDDDD;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    color: #575757;
    text-align: center;

    width: 90%;
    /* min-width: 300px; */
    max-width: 300px;
     height: 100px;
     max-height: 100px;
     min-height: 100px;
     resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

button {
    background: #2386C6;
    border-radius: 29px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;

    width: auto;
    height: auto;
    padding: 5px 20px;
}

.stepperContainer {
    margin: auto;
    width: 90%;
    max-width: 300px;
}
.stepperContainer button {
    background-color: transparent;
    color: #4E5A67;
    font-size: 26px;
    font-weight: 700;
    width: 44px;
    height: 44px;
    text-align: center;
    padding: 0;

    /* background-color: red; */
border-radius: 0;
}
.stepperContainer input {
    width: 100px;
    font-size: 26px; 
}

.timePickerContainer {
    margin: auto;
    width: 90%;
    width: 130px;
    height: 40px;
    background-color: #F8F8F8;
    border-radius: 14px;
    /* display: inline-block;
    word-wrap: none; */
}

.timePickerContainer input {
    margin: auto;
    border: none;
    width: 60px;
    height: 40px;
    float: left;
    padding: 0;
    font-size: 24px;
}
.timePickerContainer p {
    border: none;
    width: 10px;
    height: 40px;
    float: left;
    font-size: 24px;
    line-height: 40px;
    color: #575757;
}

.toggleSlider {
    margin: auto;
    width: 90%;
    max-width: 300px;
    border-color: #DDDDDD;
    border-radius: 18px;
    border-style: solid;
    border-width: 2px;
    height: 30px;
    background-color: #F8F8F8;
}
.toggleSliderItem {
    margin: auto;
    padding: 0;
    text-align: center;
    float: left;
    height: 30px;
    border-radius: 15px;

    background-color: transparent;
    color: #4E5A67;
}

.toggleSliderItemSelected {
    background-color: #2386C6;
    color: white;
}

.datePicker {
    margin: auto;
    width: 90%;
    max-width: 300px;
    height: auto;
    min-height: 160px;
    border-color: #DDDDDD;
    border-radius: 18px;
    border-style: solid;
    border-width: 2px;
    background-color: #F8F8F8;
}

.logo-img {
    width: 80px;
    height: 80px;
    background-color: rgb(185, 185, 185);
    border-radius: 10px;
    border-radius: 16px;
    border: solid 1px #f1f1f1;
    
    background-color: transparent;
    border: none;
    height: 70px;
    width: 70px;
}

.confirmationObjectBubble {
    margin: auto;
    background-color: #F8F8F8;
    width: 150px;
    height: 34px;
    /* border-radius: 15px; */
    border-radius: 17px;

    display: inline-block;
    margin: 8px;
    margin: 8px 4px;
}
.confirmationObjectBubble p {
    color: #4E5A67;
    font-size: 16px;
    line-height: 30px;
    line-height: 34px;
}


#errorLabel {
    margin: auto;
    width: 84%;
    font-size: 16px;
    font-weight: 500;
    color: #EB5237;
    line-height: 18px;
}

/* .errorLabel {
    margin: auto;
    width: 84%;
    font-size: 16px;
    font-weight: 500;
    color: #EB5237;
    line-height: 18px;
} */

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* background-color: red; */
    text-align: center;
    padding-bottom: 5px;
}

footer a {
    text-decoration: none;
    color: inherit;
    font-family: 'Poppins', sans-serif;
}
footer p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: rgb(255, 255, 255);
    margin: auto;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 5px;
    opacity: 0.7;

}