.stageplek-zoeker-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: inherit;
}

.stageplek-zoeker-main {
    display: flex;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
    min-height: 700px;
}

/* Sidebar / Lijst weergave */
.stageplek-zoeker-sidebar {
    width: 45%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
}

.stageplek-filters-wrap {
    padding: 24px;
    background: #f9fbfd;
    border-bottom: 1px solid #eee;
}

.stageplek-filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stageplek-filter {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stageplek-filter label {
    font-weight: 600;
    font-size: 14px;
    color: #213047;
}

.stageplek-filter input,
.stageplek-filter select {
    padding: 12px 16px;
    border: 1px solid #d1d9e2;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
}

.stageplek-filter input:focus,
.stageplek-filter select:focus {
    outline: none;
    border-color: #e6710a;
    box-shadow: 0 0 0 2px rgba(230, 113, 10, 0.1);
}

.stageplek-filter--submit {
    margin-top: 8px;
}

.stageplek-filter__button {
    background: #e6710a;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.stageplek-filter__button:hover {
    background: #c95f05;
}

.stageplek-results-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    max-height: 600px;
}

.stageplek-item {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stageplek-item:hover {
    background: #f5f8fa;
}

.stageplek-item.is-active {
    background: #fff4eb;
    border-left: 4px solid #e6710a;
}

.stageplek-item__title {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    color: #213047;
}

.stageplek-item__address {
    font-size: 14px;
    color: #546170;
    margin-bottom: 4px;
}

.stageplek-item__vakgebieden {
    font-size: 12px;
    display: inline-block;
    background: #eee;
    padding: 2px 8px;
    border-radius: 4px;
    color: #546170;
}

.stageplek-item__link {
    font-size: 14px;
    font-weight: 600;
    color: #e6710a;
    text-decoration: none;
}

.stageplek-no-results {
    padding: 40px;
    text-align: center;
    color: #546170;
}

/* Kaart weergave */
.stageplek-zoeker-map-wrap {
    width: 55%;
    position: relative;
}

#stageplek-zoeker-map {
    width: 100%;
    height: 100%;
}

.stageplek-feedback {
    padding: 12px 24px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.stageplek-feedback.is-success { color: #146c43; background: #e6f4ea; }
.stageplek-feedback.is-warning { color: #9a6700; background: #fff8e6; }
.stageplek-feedback.is-error { color: #b42318; background: #fef3f2; }
.stageplek-feedback.is-info { color: #155eef; background: #eff4ff; }

/* Responsive */
@media (max-width: 991px) {
    .stageplek-zoeker-main {
        flex-direction: column;
    }
    .stageplek-zoeker-sidebar,
    .stageplek-zoeker-map-wrap {
        width: 100%;
    }
    .stageplek-zoeker-map-wrap {
        height: 400px;
    }
}
