
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #002147;
    color: white;
    text-align: center;
    padding: 20px 0;
}

h1, h2, h3 {
    color: #ff9900;
}

.menu, .order-form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.survey-form {
    padding: 8px;
}

/* Media query for mobile */
@media (min-width: 768px) {
    .survey-form {
        padding: 20px;
    }
}

.review {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.flyer-style .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.thank-you-container {
    text-align: center;
    padding: 24px;
}

.qr-code {
    width: 200px;
    /* margin: 20px auto; */
}

.payment-info {
    padding-top: 24px;
}

.share-section {
    padding-top: 24px;
}

.share-options a {
    display: inline-block;
    margin: 10px;
    padding: 10px 15px;
    background-color: #ff9900;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.share-options a:hover {
    background-color: #e68a00;
}


.menu-item {
    text-align: center;
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25em;
    color: #ff9900;
}

.survey-links {
    text-align: center;
    margin-top: 12px;
}

.survey-links a {
    text-decoration: none;
    color: #002147;
    font-weight: bold;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #ff9900;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #e68a00;
}

button:disabled,
button[disabled]{
  color: #888;
  cursor: default;
}

.buttonMuted {
    background-color: #bbbbbb;
    color: black;
}

.buttonMuted:hover {
    background-color: #ff9900;
}

.btnText {
    display: inline-block;
    width: auto;
    padding: 12px;
    margin-top: 12px;
    background-color: inherit;
    color: #ff9900;
    border: none;
    border-radius: 0;
    font-size: 18px;
    cursor: pointer;
}
  
/* On mouse-over */
.btnText:hover {
    color: #e68a00;
    background-color: inherit;
}

.btnText:disabled,
.btnText[disabled]{
  color: #bbb;
  cursor: default;
}

.pagination {
    text-align: center;
}

/* General Styling for Remove Button */

.removeMeal {

    font-size: 1.5rem;

    color: red;

    font-weight: bold;

    cursor: pointer;

    margin-left: 10px;

}

.removeMeal:hover {

    color: darkred;

}

/* Survey Form */
#surveyForm {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#surveyForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#surveyForm button {
    width: 100%;
    padding: 10px;
    background-color: #ff9900;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

#surveyForm button:hover {
    background-color: #e68a00;
}

/* Thank You Section */
.thank-you {
    text-align: center;
    background-color: #dff0d8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.thank-you.hidden {
    display: none;
}

/* Hidden Elements */
.hidden {
    display: none;
}

/* Style for the payment method dropdown */
select, input[type='text'], input[type='tel'] {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}

.survey-rating {
    text-align: center;
}

.stars {
    display: inline-flex;
    cursor: pointer;
}

.star {
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.3s;
}

.star.selected {
    color: #ff9900;
}

.star:hover {
    color: #e68a00;
}

.flex-2 {
    display: flex;
    gap: 24px; /* Optional: Adds space between the divs */
    margin-bottom: 16px;
}
  
.flex-2-box {
    flex: 1; /* Makes both divs equal in width */
}
  
/* Media query for mobile */
@media (max-width: 768px) {
    .flex-2 {
      flex-direction: column; /* Stack the divs vertically */
    }
}

.headerButton {
  background-color: inherit;
  color: white;
}

/* On mouse-over */
.headerButton:hover {
  color: #e68a00;
  background-color: inherit;
}

.selectedTab {
    color: #ff9900 !important;
}

.link-plain {
    text-decoration: none !important;
}