.platskarta-map {
    width: 100%;
    height: 500px;
    margin-bottom: 1rem;
}

.platskarta-filter {
    margin-bottom: 1rem;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    max-width: 300px;
}

.platskarta-list {
    margin-bottom: 1rem;
    padding: 10px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-height: 400px;
    overflow-y: auto;
}

.platskarta-list ul {
    list-style: none;
    padding: 0;
}

.platskarta-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.platskarta-list li.active {
    background-color: #e0f0ff;
}

.platskarta-detail {
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    margin-top: 1rem;
}

.platskarta-detail img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

@media (min-width: 768px) {
    .platskarta-wrapper {
        display: flex;
        gap: 20px;
    }

    .platskarta-filter,
    .platskarta-list,
    .platskarta-detail {
        flex: 1;
    }
}

.close-detail {
  float: right;
  cursor: pointer;
  font-weight: bold;
  color: red;
  margin-left: auto;
  display: inline-block;
}
