/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px 20px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Payment Menu */
.menu-container {
    margin-top: 50px;
}

.payment-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-option {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #007bff;
    padding: 12px 20px;
    border-radius: 6px;
    transition: 0.3s;
    width: 200px;
    text-align: center;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.payment-option:hover {
    background-color: #0056b3;
}


/*.payment-option {*/
/*    text-decoration: none;*/
/*    font-size: 18px;*/
/*    font-weight: bold;*/
/*    color: white;*/
/*    background-color: #007bff;*/
/*    padding: 12px 20px;*/
/*    border-radius: 6px;*/
/*    transition: 0.3s;*/
/*    width: 200px;*/
/*    text-align: center;*/
/*}*/

.payment-option:hover {
    background-color: #0056b3;
}


apple-pay-button {
    --apple-pay-button-width: 140px;
    --apple-pay-button-height: 30px;
    --apple-pay-button-border-radius: 5px;
    --apple-pay-button-padding: 5px 0px;

    display: block !important;
    margin: 0 auto; /* Centers horizontally */
}


#applePayDiv {
    margin-top: 20px;
}

.dynamic-input {
    display: inline-block;
    padding: 2px; /* Adjust padding to match default inputs */
    min-width: 200px; /* Minimum width for usability */
    max-width: 100%; /* Prevent overflowing the container */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
}

.dynamic-input:focus {
    outline: none; /* Remove default focus outline */
    border-color: #007BFF; /* Add a subtle border color on focus */
}

.dynamic-input:empty:before {
    content: attr(data-placeholder);
    color: #aaa;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Dark overlay */
    justify-content: center;
    align-items: center;
}

/* Modal content */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    height: 80%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Full-size iframe */
.modal iframe {
    width: 100%;
    height: 90%;
    border: none;
}