.search-points-tip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: #e8f0fe;
}

.tip-content {
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tip-text {
    flex: 1;
    color: var(--primary-color, #3880ff);
    font-size: 14px;
}

.tip-btn {
    margin-right: 10px;
    padding: 6px 16px;
    border-radius: 20px;
    background: var(--primary-color, #3880ff);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.tip-btn:hover {
    background: var(--primary-hover, #2c6edb);
    color: #fff;
}

.tip-close {
    padding: 0 4px;
    border: none;
    background: none;
    color: var(--primary-color, #3880ff);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    user-select: none;
}

.tip-close:hover {
    color: var(--primary-hover, #2c6edb);
}

@media (max-width: 640px) {
    .tip-content {
        gap: 8px;
    }

    .tip-text {
        font-size: 13px;
    }

    .tip-btn {
        padding: 4px 12px;
        font-size: 13px;
    }
}
