/* widgets/css/snxt-fhp-search-map.css */
.snxt-fhp-map-widget {
    position: relative;
}

.snxt-fhp-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.snxt-map {
	flex: 1 1 auto;
    min-width: 300px;
}

.snxt-content {
	flex: 1 1 auto;
    min-width: 300px;
}

.snxt-content-top,
.snxt-content-bottom {
    margin-bottom: 1rem;
    white-space: pre-line;
}

.snxt-fhp-map-search {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.snxt-fhp-map-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.snxt-fhp-marker {
    background: #FD9A19; 
    border: 2px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
}

.snxt-search-button  {
	background: linear-gradient(90deg, #8FFF8B, white, #8FFF8B) !important;
	transition-duration: 300ms;
}

.snxt-search-button:hover {
	background: linear-gradient(135deg, #8FFF8B 40%, white 50%, #8FFF8B 60%) !important;
}

/* Mobile: Spalten untereinander */
@media (max-width: 768px) {
    .snxt-fhp-layout {
        flex-direction: column;
    }

    .snxt-map,
    .snxt-content {
        width: 100% !important;
        min-width: 0 !important;
    }
}