body {
    font-family: Arial, sans-serif;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.8;
}

.container {
    max-width: 400px; /* Prevents container from becoming too wide */
    width: 80%; /* Responsive width */
    margin: 10px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, .9);
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 30px solid #3872B8;
}

.greeting-container {
    position: absolute;
    margin: 0 auto;
    align: center;
    top: -50px;
    left: 0;
    width: calc(100% - 20px);
    height: 50px;
    line-height: 20px;
    background-color: #3872B8;
    border-radius: 10px 10px 0px 0px;
    padding: 0 10px;
    display: flex;
    justify-content: center;
}

h1 {
    text-align: center;
    color: #000;
}

h3 {
    text-align: left;
    color: #fff;
}

p {
    text-align: center;
    color: #000;
    font-weight: bold;
}

ol {
   list-style-type: 1;
   padding: 0;
}

li {
   margin-left: 3em;
   text-align: left !important;
   padding: 2px;
   font-size: 8px:
}

/* Input and Button Styles */
.input-voucher {
    margin-bottom: 16px;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="number"],
input[type="text"],
input[type="password"],
select {
    width: calc(80% - 10px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 100px;
    text-align: center;
    font-size: 16px;
    font-weight: bolder;
    transition: border-color 0.3s;
}

#buttonPay,
#buttonSearch,
#button-login {
    width: 80%;
    padding: 8px;
    border: none;
    background-color: #00A74F;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bolder;
    transition: background-color 0.3s, transform 0.2s; /* Add transition for transform */
    flex: 1;
}

#button-login:hover,
#buttonPay:hover,
#buttonSearch:hover {
    background-color: #009647;
    transform: scale(1.05); /* Slightly enlarges button on hover */
}

.hours {
    white-space: nowrap;
}

#package {
    font-size: 16px;
    width: 80%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 100px;
    text-align: center;
    font-weight: bolder;
    margin-bottom: 15px;
}

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

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.terms-link {
    text-decoration: none;
    color: #00A74F;
    font-weight: bold;
}

.oper-hint {
    color: red;
    text-align: center;
    font-size: 10px;
    font-weight: bolder;
    margin-bottom: 10px;
}

.hidden {
    display: none;
}

.footer {
    position: absolute;
    padding-top: 25px;
    text-align: center;
    color: white;
    font-size: large; /* Increase font size */
    width: 90%; /* Ensure the footer stretches across the entire width */
}

/* Media Queries for Responsiveness */
@media only screen and (min-width: 992px) {
    .container {
        position: relative;
        width: 35%;
        margin: 80px auto;
        padding: 20px;
        background-color: rgba(255, 255, 255, .9);
        border-radius: 0px 0px 10px 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        min-width: 300px;
        border-bottom: 30px solid #3872B8;
    }

    .logo {
        display: block;
        margin: 0 auto 20px;
        width: auto;
        height: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .container {
        position: relative;
        width: 45%;
        margin: 80px auto;
        padding: 20px;
        background-color: rgba(255, 255, 255, .9);
        border-radius: 0px 0px 10px 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        min-width: 250px;
        border-bottom: 30px solid #3872B8;
    }

    .logo {
        display: block;
        margin: 0 auto 10px;
        width: auto;
        height: 70px;
    }
    .footer {
        font-size: medium; /* Increase font size */
        padding-top: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        align: center;
        position: relative;
        width: 75%;
        height: auto; /* Changed to auto for better adaptability */
        margin: 70px auto;
        padding: 10px;
        background-color: rgba(255, 255, 255, .9);
        border-radius: 0px 0px 10px 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        min-width: 220px;
        border-bottom: 30px solid #3872B8;
    }

    .logo {
        display: block;
        margin: 0 auto 2px;
        width: auto;
        height: 40px;
    }
    .footer {
        font-size: medium; /* Increase font size */
        padding-top: 15px;
    }
}

.btn_container {
    width: 80%;
    display: flex;
    flex-direction: row; /* Stack the buttons vertically */
    gap: 15px; /* Use gap to add space between buttons */
}

.column1,
.column2 {
    flex: 1;
    margin: 5px; /* Added margin for spacing */
}

#btn-dark {
    padding: 10px;
    border-radius: 20px;
    border-block: none;
    border-style: none;
}

#loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    padding: 20px;
    background-color: #333;
    border-radius: 20px;
    text-align: center;
}

