

 body {
   font-family: 'Arial', sans-serif;
   background-color: #f8f9fa;
   margin: 0;
   padding: 0;
   background-image: url('/images/bg1.png');
   background-size:cover;
 }
 


 

 .header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: #2E294E; /* Updated Header Color */
   color: #fff;
   padding: 10px 20px;
 }

 .logo {
     width: 100%;
     max-height: 40px;
     max-width: 40px;
 }

 .restaurant-name {
   text-align: center;
   font-size: 24px;
 }

 .main-section {
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   min-height: calc(100vh - 80px); /* 100% height minus header height */
   padding: 20px;
 }

 .option-container {
   text-align: center;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease-in-out;
   margin-bottom: 20px;
   flex-grow: 1; /* Allow the container to grow and fill the space */
 }

 .option-container:hover {
   transform: scale(1.05);
 }

 /* Color Scheme */
 .leave-review {
   background-color: #57CC99;
   color: #fff;
 }

 .show-menu {
   background-color: #33AAFE;
   color: #fff;
 }

 .about-us {
   background-color: #006D77;
   color: #fff;
 }

 .btn-primary {
   background-color: #2E294E;
   border-color: #2E294E;
 }


 #language-switch {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#us-flag, #hu-flag {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}


#modal {
  display: none;
  
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh - 56px;
  background-color: rgba(0, 0, 0, 0.1);
}


#back-btn {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  text-align: left;
  cursor: pointer;
}