#menu .current a {
    color: #f56a6a !important;
    font-weight: bold !important;
    background-color: rgba(245, 106, 106, 0.1);
    border-left: 4px solid #f56a6a;
    padding-left: 1em !important;
}

/* Current menu item styles */
#menu ul a.current, #menu ul span.current {
  color: #f56a6a;
  font-weight: 700;
  background-color: rgba(245, 106, 106, 0.1);
  border-left: 4px solid #f56a6a;
  padding-left: 1em;
}

/* AAU Logo styles */
.image.object img[src*="AAU logo"] {
  object-fit: contain !important;
  max-height: 300px;
  width: auto;
}

/* Page header image styles */
.image.main img {
  aspect-ratio: 18/6;
  object-fit: cover;
  width: 100%;
  max-height: 400px;
}

/* Contents section image styles */
.posts .image img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  max-height: 300px;
}

/* Author image styles */
.features article .image {
  width: 10em;
  height: 10em;
  margin: 0 auto 2em;
  border-radius: 100%;
  overflow: hidden;
}

.features article .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General image styles for better mobile display */
.image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive image styles */
@media screen and (max-width: 736px) {
  .image.main img {
    max-height: 300px;
  }
  
  .posts .image img {
    max-height: 200px;
  }
  
  .features article .image {
    width: 8em;
    height: 8em;
  }
}

/* Search page styles */
.search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-size: 1.1em;
}

.search-container input[type="text"] {
  width: 100%;
  padding: 1em;
  margin-bottom: 1em;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.1em;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}

.search-results {
  margin-top: 2em;
}

.search-results article {
  margin-bottom: 2em;
  padding: 1.5em;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-results h3 {
  margin: 0 0 0.5em 0;
  color: #f56a6a;
  font-size: 1.75em;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.search-results p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 1.1em;
  font-weight: 400;
}

/* Responsive styles for search page */
@media screen and (max-width: 1280px) {
  .search-container {
    max-width: 95%;
  }
}

@media screen and (max-width: 736px) {
  .search-container {
    padding: 1em;
    font-size: 1em;
  }
  
  .search-container input[type="text"] {
    font-size: 1em;
    padding: 0.8em;
  }
  
  .search-results article {
    padding: 1em;
    margin-bottom: 1.5em;
  }
  
  .search-results h3 {
    font-size: 1.4em;
  }
  
  .search-results p {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  .search-container {
    padding: 0.8em;
    font-size: 0.95em;
  }
  
  .search-results article {
    padding: 0.8em;
  }
  
  .search-results h3 {
    font-size: 1.2em;
  }
  
  .search-results p {
    font-size: 0.95em;
  }
}

/* Recommendation page styles */
.recommendation-page {
  font-family: Arial, sans-serif;
  margin: 20px;
}

.recommendation-page input {
  padding: 8px;
  width: 300px;
  margin-bottom: 10px;
}

.recommendation-page li {
  margin: 8px 0;
} 