section{
  height: 84vh;
  padding: 0px;
  margin: 2.3vh;
  width: 97% !important;
}


body{
  /* Replaced logical properties with standard margin/padding */
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  /* Removed CSS Custom Property --r-heading-margin: 0; */
  color: black !important;
}

.col-auto{
  position: relative;
  width: 100%;
  min-height: 1px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.img {
  margin: 0;
  border-radius: 2vh;
  padding: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  max-height: 100% !important;
  max-width: 100% !important;
  background-repeat: no-repeat;
}

.container {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  /*gap: 3vh;*/ /* CSS gap for flexbox might also have limited support in very old browsers, but generally better than grid */
}

.event-details{
  height: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: wrap;
}

.event-info {
  min-width: 0;
  flex-wrap: wrap;
  margin-left: -3vh;
  margin-top: 3vh;
}


.event-card {
  color: white;
  width: 100%;
  height: 100%;
  text-align: left;
  border-radius: 2vh;
  margin-left: 3vh;
}


.title {
  font-size: 9vh !important;
  margin-bottom:2vh !important;
  font-weight: bold;
}

.description {
  font-size: 3vh !important;
  color: black;
  height: 100%;
  padding: 0;
  margin: 0;
}

.event-card img {
  color: white;
  fill: white;
  margin: 0;
  padding-left: 1vh;
  padding-top: 2vh;
  height: 6vh;
}

.event-card p {
  font-size: 5vh;
  line-height: 1;
  margin: 0;
  padding-top: 1vh;
  padding-left: 2vh;
  text-align: left;
  font-weight: bold;
}

.qr-code {
  height: 100% !important;

  margin-left: 3vh;
}

.qr-code img {
  margin: 0;
  height: 100%;
  max-height: 100% !important;
  max-width: 100% !important;
  padding: 0;
}

#announcement-title{
  font-size: 5vh;
  font-weight: bold;
  color: black;
  padding-bottom: 1vh;
  font-family: Arial, Helvetica, sans-serif;
}

.announcement{
  font-size: 4vh;
  color: black;
  padding-bottom: 1vh;
  margin-left: 1vh;
  font-family: Arial, Helvetica, sans-serif;
}


.flex-wrap {
  flex-wrap: wrap !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.text-start {
  text-align: left !important;
}

.row {
  display: flex;
}

.flex-column {
  flex-direction: column !important;
}

.d-flex {
  display: flex !important;
}

.h-100 {
  height: 100% !important;
}

.h-90 {
  height: 90% !important;
}


.col {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}

.align-items-start {
  align-items: flex-start !important;
}


/* Replaced display: grid with flexbox for better compatibility */
.grid-container {
  display: flex;
  flex-wrap: wrap;
  /* Consider adding justify-content if needed, e.g., justify-content: space-around; */
}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 0.12vh solid rgba(0, 0, 0, 0.3);
  text-align: center;
  border-radius: 1.2vh;
  margin: 2vh;
  padding: 2vh;
  /* Add flex-basis for two-column layout in flexbox */
  flex-basis: calc(50% - 4vh); /* Adjust based on desired spacing and margins */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  /* Add this line */
}


.menu-title{
  font-size: 6vh !important;
  font-weight: bold;
}

.dish-type {
  font-size: 5.3vh !important;
  font-weight: bold;
  color: green !important;
}

.dish {
  font-size: 4vh !important;
}

.dish:not(:last-child) {
  /* Removed margin: 3vh; as grid-item already has margin */
  padding-bottom: 3vh;
  border-bottom: 0.2vh solid #e0e0e0;
  /* Added margin-bottom to separate dishes vertically within a grid-item if multiple dishes appear */
  margin-bottom: 3vh;
}
