 .tools-section{
    padding: 20px 0;
 }
 .map-title {
     font-size: 20px;
     margin-bottom: 10px;
     font-weight: 600;
 }

 .map-desc {
     font-size: 14px;
     color: #666;
     margin-bottom: 12px;
 }

 .map-actions {
     margin-bottom: 10px;
 }

 .btn-location {
     background: #2d8cf0;
     color: #fff;
     border: none;
     padding: 8px 14px;
     border-radius: 6px;
     cursor: pointer;
     font-size: 14px;
 }

 .btn-location:hover {
     background: #1b6fd6;
 }

 .map-container {
     height: 420px;
     border-radius: 8px;
     overflow: hidden;
 }

 .form-row {
     display: flex;
     gap: 12px;
     margin-top: 12px;
 }

 .form-row input {
     flex: 1;
     padding: 10px;
     border-radius: 6px;
     border: 1px solid #ddd;
     font-size: 14px;
 }

 .note {
     font-size: 13px;
     color: #888;
     margin-top: 10px;
 }

/* Map Helper Styles */
.map-helper {
   margin-bottom: 24px;
}


.map-helper__tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.map-helper__tab {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background: #f3f3f3;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.map-helper__tab:hover {
    background: #f1f5f9;
    color: #475569;
}

.map-helper__tab--active {
    background: var(--bg-linear);
    color: #fff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.map-helper__tab--active:hover {
    background: var(--bg-linear);
}

.map-helper__search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    position: relative;
}

.map-helper__search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 12px;
    position: relative;
}

.map-helper__search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    z-index: 20;
    display: none;
    max-height: 220px;
    overflow-y: auto;
}

.map-helper__search-suggestions.is-active {
    display: block;
}

.map-helper__suggestion-item {
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 14px;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.2s;
}

.map-helper__suggestion-item:hover {
    background: #f1f5f9;
}

.map-helper__search-icon {
    display: flex;
    align-items: center;
    color: #94a3b8;
    margin-right: 10px;
    flex-shrink: 0;
}

.map-helper__search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 14px;
    color: #0f172a;
    background: transparent;
}

.map-helper__search-input::placeholder {
    color: #94a3b8;
}

.map-helper__search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.map-helper__search-clear:hover {
    background: #f1f5f9;
    color: #64748b;
}

.map-helper__search-divider {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.map-helper__location-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.map-helper__location-btn:hover:not(:disabled) {
    background: #f0f9ff;
}

.map-helper__location-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.map-helper__location-icon {
    display: flex;
    align-items: center;
    color: #3b82f6;
}

.map-helper__location-text {
    color: #3b82f6;
}

.map-helper__body {
    padding: 24px;
}

.map-helper__content {
    min-height: 400px;
}

/* Responsive */
@media (max-width: 768px) {
   

    .map-helper__tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .map-helper__tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .map-helper__search {
        flex-direction: column;
        border-radius: 8px;
    }

    .map-helper__search-input-wrapper {
        width: 100%;
        padding: 12px;
        border-bottom: 1px solid #e2e8f0;
    }

    .map-helper__search-divider {
        display: none;
    }

    .map-helper__location-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}