<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom styling to clean up the cookbook theme */

/* Typography improvements */
body {
  font-family: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #4a4a4a;
  background-color: white;
  font-weight: 500;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #4a4a4a;
}

/* List items with more breathing room */
li {
  padding-bottom: 0.7em;
  font-weight: 500;
}

/* Color palette adjustments */

.tag.is-info.is-light {
  background-color: #f8f9fa;
  color: #4a4a4a;
  font-weight: 500;
}

/* Recipe card styling - making all cards the same size */
.column.is-half-desktop {
  padding: 1.5rem;
}

.image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.content {
  line-height: 1.7;
  font-size: 18px;
  color: #4a4a4a;
  font-weight: 500;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  border: 1px solid #f1f1f1;
}

.stats-table {
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.5rem;
  border: 1px solid #f1f1f1;
  padding: 1rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  text-align: center;
}

.stat-icon {
  font-size: 1.5rem;
  color: #f4b8c4;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a4a4a;
}

.tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags .tag {
  background-color: #f8f9fa;
  color: #4a4a4a;
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
  border: 1px solid #f1f1f1;
  font-weight: 500;
}

h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f1f1f1;
  color: #4a4a4a;
  font-weight: 700;
}

#searchTerm {
  border: 1px solid #000000;
  box-shadow: none;
  font-weight: 500;
}

#searchButton {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
}

@media screen and (max-width: 768px) {
  .column.is-full-mobile {
    padding: 1rem;
  }

  .image img {
    height: 250px;
  }
}

/* Footer styling */
.footer {
  background-color: #f8f9fa;
  color: #4a4a4a;
  border-top: 2px solid #f4b8c4;
}

.footer h2, .footer h3 {
  color: #4a4a4a;
  font-weight: 700;
}

.footer-links a {
  color: #4a4a4a;
  font-weight: 500;
}

.footer-links a:hover {
  color: #f4b8c4;
}

.social-icons a {
  color: #4a4a4a;
}

.social-icons a:hover {
  color: #f4b8c4;
}

/* Navbar and logo styling */

/* Burger icon styling (both mobile and desktop) */

/* Mobile menu styles */
@media screen and (max-width: 1023px) {
  
  /* Adjust search in mobile menu */
}

/* Search results specific styling */

/* Card grid styling for consistent heights */ 

blockquote, body, figure, h1, h2, h3, hr, html, li, ol, p, textarea, ul {
  margin:initial!important;
}</pre></body></html>