.mde-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.mde-alerta {
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid #e0b4b4;
    background: #fff2f2;
    border-radius: 6px;
}

.mde-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.mde-sidebar {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 1px 8px rgba(0,0,0,.04);
    box-sizing: border-box;
}

.mde-search-label span,
.mde-servicios-title {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.mde-search-label input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
	background-color: #fff;
}

.mde-servicios {
    margin-top: 16px;
}

.mde-checkbox {
    display: block;
    margin-bottom: 9px;
    line-height: 1.3;
}

.mde-checkbox input {
    margin-right: 6px;
}

.mde-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.mde-form-actions button,
.mde-result-item {
    cursor: pointer;
}

.mde-form-actions button {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #333;
    color: #fff;
}

#mde-limpiar {
    background: #fff;
    color: #333;
}

.mde-map {
    width: 100%;
    height: 620px;
    min-height: 620px;
    max-height: 620px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #f4f4f4;
    box-sizing: border-box;
}

.mde-resultados {
    width: 100%;
    margin-top: 18px;
    padding-top: 4px;
    box-sizing: border-box;
}

.mde-count,
.mde-empty,
.mde-loading {
    margin: 0 0 10px;
    font-size: 14px;
}

.mde-result-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid #eee;
}

.mde-result-list li {
    margin: 0;
    border-bottom: 1px solid #eee;
}

.mde-result-item {
    width: 100%;
    display: block;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 8px 2px;
    font-size: 14px;
    line-height: 1.25;
}

.mde-result-item:hover,
.mde-result-item:focus {
    text-decoration: underline;
}

.mde-info-window {
    max-width: 300px;
    font-size: 13px;
}

.mde-info-window h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.mde-info-window p {
    margin: 5px 0;
}

@media (max-width: 780px) {
    .mde-layout {
        grid-template-columns: 1fr;
    }

    .mde-map {
        height: 420px;
        min-height: 420px;
        max-height: 420px;
    }
}
