/* Body Background */
body {
  margin: 0;
  padding: 0;
  background-image:url('cooking.jpg'); /* light pink */
  font-family: 'Arial', sans-serif;
  overflow: hidden; /* We'll scroll main content */
}

/* Banner */
.banner {
  background-color: #ffe6ff;
  text-align: center;
  padding: 20px;
  border-bottom: 4px solid #ffc0cb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.banner h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3.5em;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 8px #ff66cc;
}

/* Page layout */
.page-container {
  display: flex;
  height: calc(100vh - 100px); /* Full height minus banner */
}

/* Sidebar */
.sidebar {
  width: 250px;
  background-color: #ffe6ff;
  padding: 20px;
  border-right: 2px solid #ffc0cb;
  overflow-y: auto;
}

.sidebar h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2em;
  color: #d63384;
  margin-top: 0;
}

/* Recipe list area */
.recipe-list {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #ffe6f0;
}

/* Recipe cards */
.recipe-card {
  background-color: #ffcce0;
  border: 2px solid #ffb6c1;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.recipe-card h2 {
  margin-top: 0;
  color: #d63384;
}

.recipe-card p {
  margin-bottom: 10px;
  color: #333;
}

.recipe-list::-webkit-scrollbar,
.sidebar::-webkit-scrollbar {
  width: 10px;
}

.recipe-list::-webkit-scrollbar-track,
.sidebar::-webkit-scrollbar-track {
  background: #fff0f5;
}

.recipe-list::-webkit-scrollbar-thumb,
.sidebar::-webkit-scrollbar-thumb {
  background: #b3e6b3; /* light green */
  border-radius: 6px;
}

/* Firefox scrollbar support */
.recipe-list {
  scrollbar-color: #b3e6b3 #fff0f5;
  scrollbar-width: thin;
}

.sidebar {
  scrollbar-color: #b3e6b3 #fff0f5;
  scrollbar-width: thin;
}
