* {
  margin: 0;
  box-sizing: border-box;
}

.bg-grey {
  background-color: #f4f4f4;
}
.bg-white {
  background-color: #fff;
}

.section-container {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

body {
  font-family: 'Merriweather', serif; 
  line-height: 1.6;
  color: #555;
  font-size: 0.8rem;
}

.nutrition table, .composition table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  border-bottom: 1px solid black;
  padding: 8px;
  text-align: left;
}


.details-title {
  margin-top: 20px;
}

.wine-image {
  max-width: 80px;
}

.custom-button {
  cursor: pointer;
  
}

.grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
/* 
.wine-bottle {
  grid-row: 1 / 2;
}
.wine-text {
  grid-row: 2 / 2;
} */

/* Responsive styles */
@media (max-width: 600px) {
  h1 {
      font-size: 1.5rem;
  }

  h2 {
      font-size: 1.0rem;
  }

  .wine-details p, table th, table td {
      font-size: 0.7rem;
  }
}