.entries-container {
    margin: auto;
    padding: 10px;
    width: 95%;
}

.entry-preview {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.entry-preview h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.entry-preview p {
    font-size: 1em;
    line-height: 1.4;
    margin-bottom: 10px;
}

.image-previews {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.image-previews img {
    max-width: 20%;
    margin: 0;
    height: auto;
    border: 1px solid #ccc;
    padding: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 3/2;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.entry-preview a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #007BFF;
}

.entry-preview a:hover {
    text-decoration: underline;
}

.image-previews img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.entry-preview h2 a {
    text-decoration: none;
    color: inherit;
}

#map {
  width: 100%;
  height: 400px;
  margin: 1.5rem 0;
  border: 2px solid #ddd;
  border-radius: 8px;
}
