/* Custom CSS styles */
.checkbox-list{
  padding-bottom: 200px;
}

.location-form {
  margin-top: 10px;
  text-align: center;
}

.collections {
  height: 20vh;
  /* 10% of screen height */
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.collection-item img {
  width: 120px;
  /* Adjust width as needed */
  height: auto;
}

.label {
  text-align: center;
  margin-top: 5px;
  /* Adjust spacing as needed */
  font-weight: bold;
  font-size: 14px;
  /* Adjust font size as needed */
  color: #333;
  /* Adjust color as needed */
}

.location-form {
  background-color: white;
  border-radius: 10px;
  /* Adjust border radius as needed */
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  /* Add this line */
  align-items: center;
  /* Add this line */
}

.location-input {
  position: relative;
  flex: 1;
  /* Add this line */
  margin-right: 0px;
  /* Add this line for spacing between input and button */
}

.location-input input {
  padding-left: 30px;
  /* Space for the icon */
  border: none;
  border-radius: 5px;
  /* Adjust border radius as needed */
  width: 300px;
  /* Adjust width as needed */
  height: 40px;
  /* Adjust height as needed */
}

.location-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  /* Adjust icon position as needed */
  width: 20px;
  /* Adjust icon size as needed */
  height: auto;
}

.search-button {
  background-color: #4CBB17;
  color: white;
  border: none;
  border-radius: 5px;
  /* Adjust border radius as needed */
  padding: 10px 20px;
  /* Adjust padding as needed */
  cursor: pointer;
}

.menu-bar {
  display: flex;
}

.signup-button {
  color: white;
  background-color: #4CBB17;
  /* Same color as specified for buttons */
  border: 1px solid #4CBB17;
  /* Same color as specified for buttons */
  border-radius: 5px;
  padding: 10px 20px;
  margin-left: 10px;
  /* Adjust spacing between buttons */
  cursor: pointer;
}

.login-button {
  background-color: white;
  color: #4CBB17;
  /* Same color as specified for buttons */
  border: 1px solid #4CBB17;
  /* Same color as specified for buttons */
  border-radius: 5px;
  padding: 10px 20px;
  margin-left: 10px;
  /* Adjust spacing between buttons */
  cursor: pointer;
}

.login-button:hover,
.signup-button:hover {
  background-color: #2cda60;
  /* Change color on hover */
}

.discover-title {
  display: block;
  /* Ensure the element is displayed */
}
#menumodal{
width: 400px !important; 
height: 600px !important;

overflow-y: hidden;
position: fixed; 
 top: 50%; 
 left: 50%;
  transform: translate(-50%, -50%);

}

@media (max-width: 768px) {
      #menumodal{
min-width: 340px; width: 40%; max-width: 95%; max-height: 90%; overflow-y: hidden; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
}

  /* Adjust max-width as needed for mobile view */
  .discover-title {
    display: none;
    /* Hide the element in mobile view */
  }
}

/* Restaurant Grid */
.restaurants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 5 columns */
  grid-gap: 20px;
  /* Adjust the gap between items */
  padding: 30px;
  padding-top: 0px;
}

.restaurant-image img {
  width: 100%;
  /* Adjust width as needed */
  height: auto;
  margin-bottom: 10px;
}

.restaurant {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.restaurant-details {
  display: flex;
  align-items: center;
}

.restaurant-icon img {
  width: 50px;
  /* Adjust width as needed */
  height: auto;
  margin-right: 10px;
}

.restaurant-name,
.restaurant-type,
.restaurant-rating {
  margin: 0;
  font-size: large;
}

.restaurant-info {
  display: flex;
  align-items: center;
}

.restaurant-type {
  display: flex;
  align-items: center;
  color: #797979;
}


.restaurant-rating {
  margin: 0;
  color: #797979;


  border-radius: 10px;
}

/* Tab styles */
.tabs {
  display: flex;
  margin-top: 20px;
  margin-left: 40px;
}

.tab-btn {
  background-color: #f8f9fa;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-right: 10px;
  color: black;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: #4CBB17;
  color: white;
  font-weight: bold;
  border-radius: 5px;
}

/* Tab content styles */
.tab-content {
  display: none;
  padding: 5px;
  border: 1px solid #ddd;
  width: 70%;
}

.tab-content.active {
  display: block;
}

/* Grid styles */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
  margin-left: 40px;
  width: 60%;
}

.grid-item {
  background-color: #f8f9fa;
  border-radius: 5px;
  border-radius: 15px;
}



.grid-item img {
  float: right;
}

/* Table title styles */




/* Select button styles */
.select-button {
  background-color: transparent;
  color: #11be45;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  margin-left: 25px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 10px;
}


#webdiv {
  display: flex;

}

#mobilediv {
  display: none;
}

/* For mobile and tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  #webdiv {
    display: none;
  }

  #mobilediv {
    display: block;
  }
}


.table-title {
  font-weight: bold;
  margin-bottom: 2px;
}

.table-description {
  color: #777;
}

.btn-success {
  font-weight: bold;
}

@media (max-width: 767px) {


  .tabs {
    margin-top: 2px;
    margin-left: 4px;
    font-size: 12px;
  }


  .d-flex {
    flex-direction: column;
    /* Stack the elements vertically */
  }

  .table-title,
  .table-description,
  .btn {
    margin-bottom: 2px;
    /* Add some space between the elements */
  }

  .tab-content {
    width: 100%;
  }
}


.stylish-checkbox {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  /* Light background */
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Light shadow */
  transition: all 0.3s ease-in-out;
  padding-left: 25px;
}

.stylish-checkbox:hover {
  background-color: #e9ecef;
  /* Slightly darker on hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  /* Increase shadow on hover */
}

.stylish-checkbox .form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  accent-color: #4cbb17;
  /* Green checkbox color */
}

.stylish-checkbox .form-check-label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding-left: 5px;

}

.stylish-checkbox .form-check-input:checked {
  background-color: #4cbb17;
  /* Checkbox color when checked */
  border-color: #4cbb17;
}

